From 572254b53c016efa6cd842c80807d92ec8debb97 Mon Sep 17 00:00:00 2001 From: "pete.zha%sun.com" Date: Wed, 17 May 2006 02:35:05 +0000 Subject: [PATCH] bug 140204:HTTP preferences have weird checkbox handling r=bzbarsky sr=darin Check in for Antonio Xu's(antonit.xu@sun.com) fix --- suite/common/pref/pref-http.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/suite/common/pref/pref-http.js b/suite/common/pref/pref-http.js index e1cab1b58b05..8a4ae64c5751 100644 --- a/suite/common/pref/pref-http.js +++ b/suite/common/pref/pref-http.js @@ -46,8 +46,6 @@ function checkPipelining() var doDisable = !(enableHTTP11.selected && enableKeepAlive.checked); enablePipelining.disabled = doDisable; - if (doDisable) - enablePipelining.checked = false; } catch(e) {} } @@ -60,8 +58,6 @@ function checkPipeliningProxy() var doDisable = !(enableHTTP11.selected && enableKeepAlive.checked); enablePipelining.disabled = doDisable; - if (doDisable) - enablePipelining.checked = false; } catch(e) {} }