From 816e0a7599addf04e2d8e5bda822b79e7b3a9a11 Mon Sep 17 00:00:00 2001 From: "neil%parkwaycc.co.uk" Date: Wed, 4 Feb 2004 09:43:17 +0000 Subject: [PATCH] Bug 117594 Wallet's URL specific page does not resize r=dwitte sr=alecf --- .../resources/content/WalletUrlspecific.xul | 52 +++++++------------ 1 file changed, 19 insertions(+), 33 deletions(-) diff --git a/extensions/wallet/editor/resources/content/WalletUrlspecific.xul b/extensions/wallet/editor/resources/content/WalletUrlspecific.xul index 1b20f6cfc60b..14e5fc152ee0 100644 --- a/extensions/wallet/editor/resources/content/WalletUrlspecific.xul +++ b/extensions/wallet/editor/resources/content/WalletUrlspecific.xul @@ -41,8 +41,8 @@ for (var schema in parent.schemaToValue) { colonIndex = schema.indexOf(":"); if (colonIndex != -1) { - var rows = document.getElementById("rows"); - var row = document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul", "row"); + var list = document.getElementById("list"); + var item = document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul", "listitem"); var text1 = document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul", "textbox"); var text2 = document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul", "textbox"); var menuList = document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul", "menulist"); @@ -51,10 +51,10 @@ menuPopup.appendChild(menuItem); menuList.appendChild(menuPopup); - row.appendChild(text1); - row.appendChild(text2); - row.appendChild(menuList); - rows.appendChild(row); + item.appendChild(text1); + item.appendChild(text2); + item.appendChild(menuList); + list.appendChild(item); menuItem.setAttribute("label", ""); menuItem.setAttribute("len","0"); @@ -76,35 +76,21 @@ - + - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + +