2007-03-19  Mark Rowe  <mrowe@apple.com>

        Rubber-stamped by Brady.

        Update references to bugzilla.opendarwin.org with bugs.webkit.org.

        * bindings/c/c_utility.cpp:
        (KJS::Bindings::convertUTF8ToUTF16):
        * kjs/function.cpp:
        (KJS::FunctionImp::callAsFunction):
        * kjs/grammar.y:
        * kjs/keywords.table:
        * kjs/lexer.cpp:
        (KJS::Lexer::shift):

2007-03-19  Mark Rowe  <mrowe@apple.com>

        Rubber-stamped by Brady.

        Update references to bugzilla.opendarwin.org with bugs.webkit.org.

        * ChangeLog:
        * WebCore.vcproj/WebCore/build-generated-files.sh:
        * manual-tests/ATSU-bad-layout.html:
        * manual-tests/accidental-strict-mode.html:
        * manual-tests/applet-param-no-name.html:
        * manual-tests/bidi-parens.html:
        * manual-tests/bugzilla-3855.html:
        * manual-tests/bugzilla-4840.html:
        * manual-tests/bugzilla-6821.html:
        * manual-tests/containing-block-position-chage.html:
        * manual-tests/contenteditable-link.html:
        * manual-tests/css3-cursor-fallback-quirks.html:
        * manual-tests/css3-cursor-fallback-strict.html:
        * manual-tests/custom-cursors.html:
        * manual-tests/dictionary-scrolled-iframe.html:
        * manual-tests/dom-manipulation-on-resize.html:
        * manual-tests/drag-image-to-address-bar.html:
        * manual-tests/empty-link-target.html:
        * manual-tests/empty-title-popup.html:
        * manual-tests/first-line-style-crash.html:
        * manual-tests/invalid-mouse-event.html:
        * manual-tests/left-overflow-repaint.html:
        * manual-tests/linkjump-3.html:
        * manual-tests/log-keypress-events.html:
        * manual-tests/named-window-blank-target.html:
        * manual-tests/plain-text-paste.html:
        * manual-tests/plugin-controller-datasource.html:
        * manual-tests/pre-tab-selection-rect.html:
        * manual-tests/redirection-target.html:
        * manual-tests/redraw-page-cache-visited-links.html:
        * manual-tests/reset-initiatedDrag.html:
        * manual-tests/resources/named-window-blank-target-step2.html:
        * manual-tests/resources/named-window-blank-target-step3.html:
        * manual-tests/resources/named-window-blank-target-step4.html:
        * manual-tests/resources/redraw-page-cache-visited-links-2.html:
        * manual-tests/scrollbar-hittest.html:
        * manual-tests/scrollbar-hittest2.html:
        * manual-tests/subview-click-assertion.html:
        * manual-tests/tabbing-input-google.html:
        * manual-tests/text-field-autoscroll.html:
        * manual-tests/textarea-after-stylesheet-link.html:
        * manual-tests/textarea-focus.html:
        * manual-tests/whitespace-pre-affinity.html:

2007-03-19  Mark Rowe  <mrowe@apple.com>

        Rubber-stamped by Brady.

        Update references to bugzilla.opendarwin.org with bugs.webkit.org.

        * WebInspector/webInspector/inspector.css:
        * WebView/WebHTMLView.mm:
        (-[WebHTMLView firstRectForCharacterRange:]):
        * WebView/WebView.mm:
        (-[WebView initWithFrame:frameName:groupName:]):


git-svn-id: http://svn.webkit.org/repository/webkit/trunk@20304 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index e6f77c7..82346a5 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,18 @@
+2007-03-19  Mark Rowe  <mrowe@apple.com>
+
+        Rubber-stamped by Brady.
+
+        Update references to bugzilla.opendarwin.org with bugs.webkit.org.
+
+        * bindings/c/c_utility.cpp:
+        (KJS::Bindings::convertUTF8ToUTF16):
+        * kjs/function.cpp:
+        (KJS::FunctionImp::callAsFunction):
+        * kjs/grammar.y:
+        * kjs/keywords.table:
+        * kjs/lexer.cpp:
+        (KJS::Lexer::shift):
+
 2007-03-18  Geoffrey Garen  <ggaren@apple.com>
 
         Reviewed by Oliver Hunt.
diff --git a/JavaScriptCore/bindings/c/c_utility.cpp b/JavaScriptCore/bindings/c/c_utility.cpp
index 7d7d784..1dce947 100644
--- a/JavaScriptCore/bindings/c/c_utility.cpp
+++ b/JavaScriptCore/bindings/c/c_utility.cpp
@@ -72,7 +72,7 @@
     } 
     
     // Check to see if the conversion was successful
-    // Some plugins return invalid UTF-8 in NPVariantType_String, see <http://bugzilla.opendarwin.org/show_bug.cgi?id=5163>
+    // Some plugins return invalid UTF-8 in NPVariantType_String, see <http://bugs.webkit.org/show_bug.cgi?id=5163>
     // There is no "bad data" for latin1. It is unlikely that the plugin was really sending text in this encoding,
     // but it should have used UTF-8, and now we are simply avoiding a crash.
     if (!U_SUCCESS(status)) {
diff --git a/JavaScriptCore/kjs/function.cpp b/JavaScriptCore/kjs/function.cpp
index 7a8d12b..581b649 100644
--- a/JavaScriptCore/kjs/function.cpp
+++ b/JavaScriptCore/kjs/function.cpp
@@ -125,7 +125,7 @@
 
   // The debugger may have been deallocated by now if the WebFrame
   // we were running in has been destroyed, so refetch it.
-  // See http://bugzilla.opendarwin.org/show_bug.cgi?id=9477
+  // See http://bugs.webkit.org/show_bug.cgi?id=9477
   dbg = exec->dynamicInterpreter()->debugger();
 
   if (dbg) {
diff --git a/JavaScriptCore/kjs/grammar.y b/JavaScriptCore/kjs/grammar.y
index 20f265f..20093e0 100644
--- a/JavaScriptCore/kjs/grammar.y
+++ b/JavaScriptCore/kjs/grammar.y
@@ -243,7 +243,7 @@
     PrimaryExprNoBrace
   | '{' '}'                             { $$ = new ObjectLiteralNode(); }
   | '{' PropertyList '}'                { $$ = new ObjectLiteralNode($2); }
-  /* allow extra comma, see http://bugzilla.opendarwin.org/show_bug.cgi?id=5939 */
+  /* allow extra comma, see http://bugs.webkit.org/show_bug.cgi?id=5939 */
   | '{' PropertyList ',' '}'            { $$ = new ObjectLiteralNode($2); }
 ;
 
diff --git a/JavaScriptCore/kjs/keywords.table b/JavaScriptCore/kjs/keywords.table
index 158b984..d99d391 100644
--- a/JavaScriptCore/kjs/keywords.table
+++ b/JavaScriptCore/kjs/keywords.table
@@ -44,7 +44,7 @@
 super           RESERVED
 
 # these words are reserved for future use in the ECMA spec, but not in WinIE
-# (see http://bugzilla.opendarwin.org/show_bug.cgi?id=6179)
+# (see http://bugs.webkit.org/show_bug.cgi?id=6179)
 # abstract      RESERVED
 # boolean       RESERVED
 # byte          RESERVED
diff --git a/JavaScriptCore/kjs/lexer.cpp b/JavaScriptCore/kjs/lexer.cpp
index ed6c788..35d82fa 100644
--- a/JavaScriptCore/kjs/lexer.cpp
+++ b/JavaScriptCore/kjs/lexer.cpp
@@ -129,7 +129,7 @@
 void Lexer::shift(unsigned int p)
 {
   // Here would be a good place to strip Cf characters, but that has caused compatibility problems:
-  // <http://bugzilla.opendarwin.org/show_bug.cgi?id=10183>.
+  // <http://bugs.webkit.org/show_bug.cgi?id=10183>.
   while (p--) {
     pos++;
     current = next1;
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index a960798..10e98fc 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,53 @@
+2007-03-19  Mark Rowe  <mrowe@apple.com>
+
+        Rubber-stamped by Brady.
+
+        Update references to bugzilla.opendarwin.org with bugs.webkit.org.
+
+        * ChangeLog:
+        * WebCore.vcproj/WebCore/build-generated-files.sh:
+        * manual-tests/ATSU-bad-layout.html:
+        * manual-tests/accidental-strict-mode.html:
+        * manual-tests/applet-param-no-name.html:
+        * manual-tests/bidi-parens.html:
+        * manual-tests/bugzilla-3855.html:
+        * manual-tests/bugzilla-4840.html:
+        * manual-tests/bugzilla-6821.html:
+        * manual-tests/containing-block-position-chage.html:
+        * manual-tests/contenteditable-link.html:
+        * manual-tests/css3-cursor-fallback-quirks.html:
+        * manual-tests/css3-cursor-fallback-strict.html:
+        * manual-tests/custom-cursors.html:
+        * manual-tests/dictionary-scrolled-iframe.html:
+        * manual-tests/dom-manipulation-on-resize.html:
+        * manual-tests/drag-image-to-address-bar.html:
+        * manual-tests/empty-link-target.html:
+        * manual-tests/empty-title-popup.html:
+        * manual-tests/first-line-style-crash.html:
+        * manual-tests/invalid-mouse-event.html:
+        * manual-tests/left-overflow-repaint.html:
+        * manual-tests/linkjump-3.html:
+        * manual-tests/log-keypress-events.html:
+        * manual-tests/named-window-blank-target.html:
+        * manual-tests/plain-text-paste.html:
+        * manual-tests/plugin-controller-datasource.html:
+        * manual-tests/pre-tab-selection-rect.html:
+        * manual-tests/redirection-target.html:
+        * manual-tests/redraw-page-cache-visited-links.html:
+        * manual-tests/reset-initiatedDrag.html:
+        * manual-tests/resources/named-window-blank-target-step2.html:
+        * manual-tests/resources/named-window-blank-target-step3.html:
+        * manual-tests/resources/named-window-blank-target-step4.html:
+        * manual-tests/resources/redraw-page-cache-visited-links-2.html:
+        * manual-tests/scrollbar-hittest.html:
+        * manual-tests/scrollbar-hittest2.html:
+        * manual-tests/subview-click-assertion.html:
+        * manual-tests/tabbing-input-google.html:
+        * manual-tests/text-field-autoscroll.html:
+        * manual-tests/textarea-after-stylesheet-link.html:
+        * manual-tests/textarea-focus.html:
+        * manual-tests/whitespace-pre-affinity.html:
+
 2007-03-18  Krzysztof Kowalczyk  <kkowalczyk@gmail.com>
 
         Not reviewed - gdk build fix.
@@ -19635,7 +19685,7 @@
 
         Reviewed by Eric.
 
-        http://bugzilla.opendarwin.org/show_bug.cgi?id=10587
+        http://bugs.webkit.org/show_bug.cgi?id=10587
         pointer-events is not implemented for RenderSVGImage or RenderSVGText
 
         Implement pointer-events for raster images and svg text.
diff --git a/WebCore/WebCore.vcproj/WebCore/build-generated-files.sh b/WebCore/WebCore.vcproj/WebCore/build-generated-files.sh
index fb0087a..8a93daa 100755
--- a/WebCore/WebCore.vcproj/WebCore/build-generated-files.sh
+++ b/WebCore/WebCore.vcproj/WebCore/build-generated-files.sh
@@ -7,7 +7,7 @@
 SRCROOT="`pwd`/../.."
 SRCROOT=`realpath "$SRCROOT"`
 # Do a little dance to get the path into 8.3 form to make it safe for gnu make
-# http://bugzilla.opendarwin.org/show_bug.cgi?id=8173
+# http://bugs.webkit.org/show_bug.cgi?id=8173
 SRCROOT=`cygpath -m -s "$SRCROOT"`
 SRCROOT=`cygpath -u "$SRCROOT"`
 export SRCROOT
diff --git a/WebCore/manual-tests/ATSU-bad-layout.html b/WebCore/manual-tests/ATSU-bad-layout.html
index 7563554..ab725cb 100644
--- a/WebCore/manual-tests/ATSU-bad-layout.html
+++ b/WebCore/manual-tests/ATSU-bad-layout.html
@@ -4,7 +4,7 @@
 <head>
 </head>
 <body>
-<p><b>BUG ID:</b> <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=9808">Bugzilla bug 9808</a> REGRESSION: Incorrect layout (and ERROR) when forcing ATSU For All Text</p>
+<p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=9808">Bugzilla bug 9808</a> REGRESSION: Incorrect layout (and ERROR) when forcing ATSU For All Text</p>
 
 <p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b> 
 Choose <i>Use ATSU For All Text</i> from Safari&rsquo;s <i>Debug</i> menu and reload this page.
diff --git a/WebCore/manual-tests/accidental-strict-mode.html b/WebCore/manual-tests/accidental-strict-mode.html
index 7b82da0..a9d4c21 100644
--- a/WebCore/manual-tests/accidental-strict-mode.html
+++ b/WebCore/manual-tests/accidental-strict-mode.html
@@ -1,4 +1,4 @@
-<p>This tests for regression against <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=7102">REGRESSION: parse mode gets set to strict after going back from non-HTML content</p>
+<p>This tests for regression against <a href="http://bugs.webkit.org/show_bug.cgi?id=7102">REGRESSION: parse mode gets set to strict after going back from non-HTML content</p>
 
 <ol>
 <li> Click on PDF link below.  Wait for PDF to fully load.
diff --git a/WebCore/manual-tests/applet-param-no-name.html b/WebCore/manual-tests/applet-param-no-name.html
index 28da86e..c6e8821 100644
--- a/WebCore/manual-tests/applet-param-no-name.html
+++ b/WebCore/manual-tests/applet-param-no-name.html
@@ -1,4 +1,4 @@
-<p>Test for <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=8437">http://bugzilla.opendarwin.org/show_bug.cgi?id=8437</a></p>
+<p>Test for <a href="http://bugs.webkit.org/show_bug.cgi?id=8437">http://bugs.webkit.org/show_bug.cgi?id=8437</a></p>
 <p>This tests an applet element with a param element inside it with no name. If Java is enabled and Safari did not crash, then the test passed.</p>
 <applet code=""><param></applet>
 <script>document.body.offsetTop;</script>
diff --git a/WebCore/manual-tests/bidi-parens.html b/WebCore/manual-tests/bidi-parens.html
index 4f72032..cbbd854 100644
--- a/WebCore/manual-tests/bidi-parens.html
+++ b/WebCore/manual-tests/bidi-parens.html
@@ -2,12 +2,12 @@
 <head>
 <style>
 .console {
-	font-family: Arial, Times New Roman
+    font-family: Arial, Times New Roman
 }
 </style>
 </head>
 <body>
-<p>This test checks for a regression against <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=3435">3435 Parentheses are backwards in Hebrew text (no bidi mirroring?)</a>.</p>
+<p>This test checks for a regression against <a href="http://bugs.webkit.org/show_bug.cgi?id=3435">3435 Parentheses are backwards in Hebrew text (no bidi mirroring?)</a>.</p>
 <p>Success: parentheses encapsulate word.</p>
 <p>Failure: parentheses face away from word.</p>
 <hr>
diff --git a/WebCore/manual-tests/bugzilla-3855.html b/WebCore/manual-tests/bugzilla-3855.html
index d1d2e14..dd19104 100644
--- a/WebCore/manual-tests/bugzilla-3855.html
+++ b/WebCore/manual-tests/bugzilla-3855.html
@@ -4,7 +4,7 @@
 <head>
 </head>
 <body>
-<p><b>BUG ID:</b> <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=3855">Bugzilla Bug 3855</a> Table with Form Field and Hidden DIV crashes Safari</p>
+<p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=3855">Bugzilla Bug 3855</a> Table with Form Field and Hidden DIV crashes Safari</p>
 
 <p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b> 
 Type in the text field below.</p>
diff --git a/WebCore/manual-tests/bugzilla-4840.html b/WebCore/manual-tests/bugzilla-4840.html
index d58368a..6cf68bd 100644
--- a/WebCore/manual-tests/bugzilla-4840.html
+++ b/WebCore/manual-tests/bugzilla-4840.html
@@ -4,7 +4,7 @@
 <head>
 </head>
 <body>
-<p><b>BUG ID:</b> <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=4840">Bugzilla bug 4840</a> Frames only resize wider, can't make them narrower</p>
+<p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=4840">Bugzilla bug 4840</a> Frames only resize wider, can't make them narrower</p>
 
 <p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b> 
 Drag the vertical split bar below to the left and release it.
diff --git a/WebCore/manual-tests/bugzilla-6821.html b/WebCore/manual-tests/bugzilla-6821.html
index 4963c08..a6539458 100644
--- a/WebCore/manual-tests/bugzilla-6821.html
+++ b/WebCore/manual-tests/bugzilla-6821.html
@@ -13,7 +13,7 @@
 </style>
 </head>
 <body>
-<p><b>BUG ID:</b> <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=6821">Bugzilla bug 6821</a> Fix for 5983 will not always update hover correctly.</p>
+<p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=6821">Bugzilla bug 6821</a> Fix for 5983 will not always update hover correctly.</p>
 
 <p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b> 
 Move the mouse over the text &ldquo;Hover here&rdquo; until it disappears and &ldquo;Wait&rdquo; appears, then DO NOT MOVE the mouse
diff --git a/WebCore/manual-tests/containing-block-position-chage.html b/WebCore/manual-tests/containing-block-position-chage.html
index 6741ce4..adc2238 100644
--- a/WebCore/manual-tests/containing-block-position-chage.html
+++ b/WebCore/manual-tests/containing-block-position-chage.html
@@ -18,7 +18,7 @@
 </head>
 <body onload="test()">
     <p>
-        This is a test for <i><a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=9121">http://bugzilla.opendarwin.org/show_bug.cgi?id=9121</a>
+        This is a test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=9121">http://bugs.webkit.org/show_bug.cgi?id=9121</a>
         REGRESSION: [Incremental Repaint] DHTML movement test failures</i>.
     </p>
     <p>
diff --git a/WebCore/manual-tests/contenteditable-link.html b/WebCore/manual-tests/contenteditable-link.html
index cc41e78..9923aa9 100644
--- a/WebCore/manual-tests/contenteditable-link.html
+++ b/WebCore/manual-tests/contenteditable-link.html
@@ -13,7 +13,7 @@
 </HEAD>
 
 <BODY>
-<P>Repro movie for bug <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=7156">#7156</a></P>
+<P>Repro movie for bug <a href="http://bugs.webkit.org/show_bug.cgi?id=7156">#7156</a></P>
 
 <div>The behaviour of editable links is controlled by the user default WebKitEditableLinkBehavior. This can be set via a private WebPreference. If the preference is OnlyLiveWithShiftKey, then the link will only be active when the shift key is pressed (WinIE/Firefox behaviour). If the preference is WebKitEditableLinkAlwaysLive or WebKitEditableLinkDefaultBehavior, then the link is always active (Safari 2.0 behaviour). Finally, if the preference is WebKitEditableLinkLiveWhenNotFocused, the link will only be live if the selection before clicking on the link is not in the same editable block as the link.</div>
 
diff --git a/WebCore/manual-tests/css3-cursor-fallback-quirks.html b/WebCore/manual-tests/css3-cursor-fallback-quirks.html
index bd833db..5cb7754 100644
--- a/WebCore/manual-tests/css3-cursor-fallback-quirks.html
+++ b/WebCore/manual-tests/css3-cursor-fallback-quirks.html
@@ -1,15 +1,15 @@
 <html>
 <head><title>Quirks custom cursor tests</title></head>
 <body>
-<p><a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=8991">Bug .991</a>: REGRESSION: missing or broken CSS custom cursors are displayed as a missing image icon.</p>
+<p><a href="http://bugs.webkit.org/show_bug.cgi?id=8991">Bug .991</a>: REGRESSION: missing or broken CSS custom cursors are displayed as a missing image icon.</p>
 <p>Move the cursor over the blue box - it should not turn into a missing image icon, and should turn into an I-beam over text.</p>
 
 <div style="width:100px;height:50px;background-color:lightblue; cursor:url(nonexistent.png), auto;"><span style="cursor:url(nonexistent.png), auto;">some text</span></div>
 <div style="width:100px;height:50px;background-color:lightblue; cursor:url(nonexistent.png);"></div>
 
 <hr>
-<p><a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=6001">Bug 6001</a>: WebKit does not handle fallback custom cursors</p>
-<p><a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=9013">Bug 9013</a>: Let correct CSS custom cursor declarations parse</p>
+<p><a href="http://bugs.webkit.org/show_bug.cgi?id=6001">Bug 6001</a>: WebKit does not handle fallback custom cursors</p>
+<p><a href="http://bugs.webkit.org/show_bug.cgi?id=9013">Bug 9013</a>: Let correct CSS custom cursor declarations parse</p>
 <p>In each of the blue boxes below, the cursor should become a help cursor (question mark).</p>
 <table><tr>
  <td><div style="width:100px;height:100px;background-color:lightblue; cursor:url(resources/helpCursor.tiff), text;"></div></td> <!-- Valid, no fallback needed -->
diff --git a/WebCore/manual-tests/css3-cursor-fallback-strict.html b/WebCore/manual-tests/css3-cursor-fallback-strict.html
index f4d2a43..06624c4 100644
--- a/WebCore/manual-tests/css3-cursor-fallback-strict.html
+++ b/WebCore/manual-tests/css3-cursor-fallback-strict.html
@@ -3,15 +3,15 @@
 <html>
 <head><title>Strict custom cursor tests</title></head>
 <body>
-<p><a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=8991">Bug .991</a>: REGRESSION: missing or broken CSS custom cursors are displayed as a missing image icon.</p>
+<p><a href="http://bugs.webkit.org/show_bug.cgi?id=8991">Bug .991</a>: REGRESSION: missing or broken CSS custom cursors are displayed as a missing image icon.</p>
 <p>Move the cursor over the blue box - it should not turn into a missing image icon, and should turn into an I-beam over text.</p>
 
 <div style="width:100px;height:50px;background-color:lightblue; cursor:url(nonexistent.png), auto;"><span style="cursor:url(nonexistent.png), auto;">some text</span></div>
 <div style="width:100px;height:50px;background-color:lightblue; cursor:url(nonexistent.png);"></div>
 
 <hr>
-<p><a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=6001">Bug 6001</a>: WebKit does not handle fallback custom cursors</p>
-<p><a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=9013">Bug 9013</a>: Let correct CSS custom cursor declarations parse</p>
+<p><a href="http://bugs.webkit.org/show_bug.cgi?id=6001">Bug 6001</a>: WebKit does not handle fallback custom cursors</p>
+<p><a href="http://bugs.webkit.org/show_bug.cgi?id=9013">Bug 9013</a>: Let correct CSS custom cursor declarations parse</p>
 <p>In each of the blue boxes below, the cursor should become a help cursor (question mark).</p>
 <table><tr>
  <td><div style="width:100px;height:100px;background-color:lightblue; cursor:url(resources/helpCursor.tiff), text;"></div></td> <!-- Valid, no fallback needed -->
diff --git a/WebCore/manual-tests/custom-cursors.html b/WebCore/manual-tests/custom-cursors.html
index b9fdb4e..0620c47 100644
--- a/WebCore/manual-tests/custom-cursors.html
+++ b/WebCore/manual-tests/custom-cursors.html
@@ -1,10 +1,10 @@
-<a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=8991">Bug 8991</a>: REGRESSION: missing or broken CSS custom cursors are displayed as a missing image icon.<p>
+<a href="http://bugs.webkit.org/show_bug.cgi?id=8991">Bug 8991</a>: REGRESSION: missing or broken CSS custom cursors are displayed as a missing image icon.<p>
 Move the cursor over the blue box - it should not turn into a missing image icon, and should turn into an I-beam over text.
 
 <div style="width:100px;height:50px;background-color:lightblue; cursor:url(nonexistent.png), auto;"><span style="cursor:url(nonexistent.png), auto;">some text</span></div>
 <div style="width:100px;height:50px;background-color:lightblue; cursor:url(nonexistent.png);"></div>
 
 <hr>
-<a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=8991">Bug 6001</a>: WebKit does not handle fallback custom cursors<p>
+<a href="http://bugs.webkit.org/show_bug.cgi?id=8991">Bug 6001</a>: WebKit does not handle fallback custom cursors<p>
 Move the cursor over the blue box - it should become a help cursor (question mark).
 <div style="width:100px;height:100px;background-color:lightblue; cursor:url(resources/helpCursor.tiff), help;"></div>
diff --git a/WebCore/manual-tests/dictionary-scrolled-iframe.html b/WebCore/manual-tests/dictionary-scrolled-iframe.html
index a9cea5d..d7cf23e 100644
--- a/WebCore/manual-tests/dictionary-scrolled-iframe.html
+++ b/WebCore/manual-tests/dictionary-scrolled-iframe.html
@@ -4,7 +4,7 @@
 <head>
 </head>
 <body>
-<p><b>BUG ID:</b> <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=8295">Bugzilla bug 8295</a> Dictionary pop-up panel targets the wrong word in a scrolled IFRAME</p>
+<p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=8295">Bugzilla bug 8295</a> Dictionary pop-up panel targets the wrong word in a scrolled IFRAME</p>
 
 <p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b><br>
 1. Click the inner frame&rsquo;s down scroll arrow once.<br>
diff --git a/WebCore/manual-tests/dom-manipulation-on-resize.html b/WebCore/manual-tests/dom-manipulation-on-resize.html
index cba4c9b..81eaa5a 100644
--- a/WebCore/manual-tests/dom-manipulation-on-resize.html
+++ b/WebCore/manual-tests/dom-manipulation-on-resize.html
@@ -4,21 +4,21 @@
 </style>
 <script>
 window.onresize = function() {
-	var tbody = document.createElement("TBODY")
+    var tbody = document.createElement("TBODY")
 
-	var m = (document.getElementsByTagName("TABLE"))[0]
-	if(m.hasChildNodes()) m.removeChild(m.lastChild)
+    var m = (document.getElementsByTagName("TABLE"))[0]
+    if(m.hasChildNodes()) m.removeChild(m.lastChild)
 
-	var tr = tbody.appendChild(document.createElement("TR"))
+    var tr = tbody.appendChild(document.createElement("TR"))
 
-	m.appendChild(tbody)
+    m.appendChild(tbody)
 }
 </script>
 </head>
 <body onload="setTimeout('window.resizeTo(500,500)', 0)">
 <table></table>
 <p>
-<b>BUG ID: <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=8739">Bugzilla bug 8739</a></b>
+<b>BUG ID: <a href="http://bugs.webkit.org/show_bug.cgi?id=8739">Bugzilla bug 8739</a></b>
 Crash in RenderTableSection::paint due to manipulating DOM on resize
 </p>
 <p id="success" style="background-color:palegreen; padding:3px;">
diff --git a/WebCore/manual-tests/drag-image-to-address-bar.html b/WebCore/manual-tests/drag-image-to-address-bar.html
index daf8517..8a8c088 100644
--- a/WebCore/manual-tests/drag-image-to-address-bar.html
+++ b/WebCore/manual-tests/drag-image-to-address-bar.html
@@ -4,7 +4,7 @@
 <head>
 </head>
 <body>
-<p><b>BUG ID:</b> <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=9952">Bugzilla bug 9952</a> REGRESSION: Repro crash when dragging an image from the window to the address bar</p>
+<p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=9952">Bugzilla bug 9952</a> REGRESSION: Repro crash when dragging an image from the window to the address bar</p>
 
 <p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b> 
 Drag the image from below to the address bar, then click on the image.
diff --git a/WebCore/manual-tests/empty-link-target.html b/WebCore/manual-tests/empty-link-target.html
index 7e3f8c8..06ccd0c 100644
--- a/WebCore/manual-tests/empty-link-target.html
+++ b/WebCore/manual-tests/empty-link-target.html
@@ -19,7 +19,7 @@
 </script></head>
 
 <body onload="test()">
-<p>Bug: <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=6382">REGRESSION: Repro crash when clicking link with target="_blank"</a></p>
+<p>Bug: <a href="http://bugs.webkit.org/show_bug.cgi?id=6382">REGRESSION: Repro crash when clicking link with target="_blank"</a></p>
 <p>If the test passes, you will see a PASS message below. (It's normal for a new window to open.)</p>
 <hr>
 <a id="a" href="resources/popup200x200.html" target="_blank"></a>
diff --git a/WebCore/manual-tests/empty-title-popup.html b/WebCore/manual-tests/empty-title-popup.html
index d5be5b9..cb6ea8c 100644
--- a/WebCore/manual-tests/empty-title-popup.html
+++ b/WebCore/manual-tests/empty-title-popup.html
@@ -1,3 +1,3 @@
-<p>This demonstrates <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=9833">bug 9833</a>.</p>
+<p>This demonstrates <a href="http://bugs.webkit.org/show_bug.cgi?id=9833">bug 9833</a>.</p>
 <p>Select the second item on the pop up.
 <select><option></option><option>Pick me!</option></select></p>
diff --git a/WebCore/manual-tests/first-line-style-crash.html b/WebCore/manual-tests/first-line-style-crash.html
index 4c5fd3c..4758b1e 100644
--- a/WebCore/manual-tests/first-line-style-crash.html
+++ b/WebCore/manual-tests/first-line-style-crash.html
@@ -7,7 +7,7 @@
 </head>
 <body>
     <p>
-        Regression test for <i><a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=8760">http://bugzilla.opendarwin.org/show_bug.cgi?id=8760</a>
+        Regression test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=8760">http://bugs.webkit.org/show_bug.cgi?id=8760</a>
         crash (hang?) on subtlegradient.com article page</i>.
     </p>
     <p>
diff --git a/WebCore/manual-tests/invalid-mouse-event.html b/WebCore/manual-tests/invalid-mouse-event.html
index 44b3b9d..e76bbe5 100644
--- a/WebCore/manual-tests/invalid-mouse-event.html
+++ b/WebCore/manual-tests/invalid-mouse-event.html
@@ -1,4 +1,4 @@
-<p>Test for <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=8272">bug 8272</a>:
+<p>Test for <a href="http://bugs.webkit.org/show_bug.cgi?id=8272">bug 8272</a>:
 Use of window.open & window.close can cause crash.</p>
 <ol>
   <li>(Get a dual processor Mac.)</li>
diff --git a/WebCore/manual-tests/left-overflow-repaint.html b/WebCore/manual-tests/left-overflow-repaint.html
index b39410f..5616c4b 100644
--- a/WebCore/manual-tests/left-overflow-repaint.html
+++ b/WebCore/manual-tests/left-overflow-repaint.html
@@ -4,7 +4,7 @@
 <head>
 </head>
 <body>
-<p><b>BUG ID:</b> <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=7916">Bugzilla bug 7916</a> Box repaint rect does not include the left overflow</p>
+<p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=7916">Bugzilla bug 7916</a> Box repaint rect does not include the left overflow</p>
 
 <p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b> 
 Scroll and resize the window as necessary to bring the three test cases below into view.
diff --git a/WebCore/manual-tests/linkjump-3.html b/WebCore/manual-tests/linkjump-3.html
index 6f085c1..64e46c0 100644
--- a/WebCore/manual-tests/linkjump-3.html
+++ b/WebCore/manual-tests/linkjump-3.html
@@ -4,7 +4,7 @@
 <head>
 </head>
 <body>
-<p><b>BUG ID:</b> <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=6916">Bugzilla 6916</a> REGRESSION: URLs with named anchors in a page don't jump to proper location in document</p>
+<p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=6916">Bugzilla 6916</a> REGRESSION: URLs with named anchors in a page don't jump to proper location in document</p>
 
 <p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b> 
 Manually resize window to about 800 x 600. Click the link below.</p>
diff --git a/WebCore/manual-tests/log-keypress-events.html b/WebCore/manual-tests/log-keypress-events.html
index de48580..87e2288 100644
--- a/WebCore/manual-tests/log-keypress-events.html
+++ b/WebCore/manual-tests/log-keypress-events.html
@@ -1,6 +1,6 @@
 <html>
 <body>
-<p>This page is especially useful to test <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=5678">the shift-Tab issue</a>. Should see a code of 9.</p>
+<p>This page is especially useful to test <a href="http://bugs.webkit.org/show_bug.cgi?id=5678">the shift-Tab issue</a>. Should see a code of 9.</p>
 <form name="f">
 Type here: <input id="field" type="text" />
 </form>
diff --git a/WebCore/manual-tests/named-window-blank-target.html b/WebCore/manual-tests/named-window-blank-target.html
index bf21b5d..33e8822 100644
--- a/WebCore/manual-tests/named-window-blank-target.html
+++ b/WebCore/manual-tests/named-window-blank-target.html
@@ -7,7 +7,7 @@
 </script>
 </head>
 <body>
-<p><b>BUG ID:</b> <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=7747">Bugzilla bug 7747</a> REGRESSION: Background tab/window auto-refresh in GMail will take focus.</p>
+<p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=7747">Bugzilla bug 7747</a> REGRESSION: Background tab/window auto-refresh in GMail will take focus.</p>
 
 <p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b> <br>
 STEP 1: Close all other Safari windows and tabs.<br>
diff --git a/WebCore/manual-tests/plain-text-paste.html b/WebCore/manual-tests/plain-text-paste.html
index c952274..89ef451 100644
--- a/WebCore/manual-tests/plain-text-paste.html
+++ b/WebCore/manual-tests/plain-text-paste.html
@@ -4,8 +4,8 @@
 <head>
 </head>
 <body>
-<p><b>BUG ID:</b> <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=8276">Bugzilla bug 8276</a> REGRESSION (NativeTextField): Pasting a Finder item into a text field results in a file: URL being pasted instead of just the file name
-<br><i>and</i><br> <b>BUG ID:</b> <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=8283">Bugzilla bug 8283</a> REGRESSION: File's path doesn't appear after dragging file into input field</p>
+<p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=8276">Bugzilla bug 8276</a> REGRESSION (NativeTextField): Pasting a Finder item into a text field results in a file: URL being pasted instead of just the file name
+<br><i>and</i><br> <b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=8283">Bugzilla bug 8283</a> REGRESSION: File's path doesn't appear after dragging file into input field</p>
 
 <p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b><br>
 1. Double-click <a href="resources/plain-text-paste.dmg">this disk image</a> in the Finder.<br>
diff --git a/WebCore/manual-tests/plugin-controller-datasource.html b/WebCore/manual-tests/plugin-controller-datasource.html
index 505a430..6a70bf7 100644
--- a/WebCore/manual-tests/plugin-controller-datasource.html
+++ b/WebCore/manual-tests/plugin-controller-datasource.html
@@ -4,7 +4,7 @@
 <head>
 </head>
 <body>
-<p><b>BUG ID:</b> <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=8658">Bugzilla bug 8658</a> Assertion failure in -[WebPluginContainerCheck _isForbiddenFileLoad] (bridge is null) when clicking QuickTime object with href</p>
+<p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=8658">Bugzilla bug 8658</a> Assertion failure in -[WebPluginContainerCheck _isForbiddenFileLoad] (bridge is null) when clicking QuickTime object with href</p>
 
 <p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b> 
 Click the small orange square below.
diff --git a/WebCore/manual-tests/pre-tab-selection-rect.html b/WebCore/manual-tests/pre-tab-selection-rect.html
index 9d80345..d9a9801 100644
--- a/WebCore/manual-tests/pre-tab-selection-rect.html
+++ b/WebCore/manual-tests/pre-tab-selection-rect.html
@@ -33,7 +33,7 @@
 </head>
 <body>
 <p>
-This is a test for <i>http://bugzilla.opendarwin.org/show_bug.cgi?id=6043
+This is a test for <i>http://bugs.webkit.org/show_bug.cgi?id=6043
 Incorrect selection highlighting in pre-formatted text with tabs</i>.
 </p>
 <hr>
diff --git a/WebCore/manual-tests/redirection-target.html b/WebCore/manual-tests/redirection-target.html
index 706c69c..365681a 100644
--- a/WebCore/manual-tests/redirection-target.html
+++ b/WebCore/manual-tests/redirection-target.html
@@ -2,5 +2,5 @@
 This test checks that redirection does not leave Safari thinking it's still loading.
 Check that the title bar does not say "Loading" any more.
 The bug was <a href="rdar://problem/4432562">4432562</a> in Radar and
-<a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=7058">7058</a> in Bugzilla.
+<a href="http://bugs.webkit.org/show_bug.cgi?id=7058">7058</a> in Bugzilla.
 </p>
diff --git a/WebCore/manual-tests/redraw-page-cache-visited-links.html b/WebCore/manual-tests/redraw-page-cache-visited-links.html
index e5ccb9c..d13019b 100644
--- a/WebCore/manual-tests/redraw-page-cache-visited-links.html
+++ b/WebCore/manual-tests/redraw-page-cache-visited-links.html
@@ -8,7 +8,7 @@
 //}
 function runTest() {
 // Uncomment to make this an automated test
-//    // Uses window.history hack; see http://bugzilla.opendarwin.org/show_bug.cgi?id=7135
+//    // Uses window.history hack; see http://bugs.webkit.org/show_bug.cgi?id=7135
 //    if (!window.history[99999]) {
 //        var element = document.getElementById("mylink");
 //        var event = document.createEvent("MouseEvent");
@@ -24,7 +24,7 @@
 </script>
 </head>
 <body onload="runTest();">
-<div><a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=8079">Bug 8079 REGRESSION: Redraw from page cache does not show visited links</a></div>
+<div><a href="http://bugs.webkit.org/show_bug.cgi?id=8079">Bug 8079 REGRESSION: Redraw from page cache does not show visited links</a></div>
 <ol>
 <li>The link in Step 2 should be rendered in an unvisited link color first.
 <li><a id="mylink" href="./resources/redraw-page-cache-visited-links-2.html">Click This Link Once</a><br><br>
diff --git a/WebCore/manual-tests/reset-initiatedDrag.html b/WebCore/manual-tests/reset-initiatedDrag.html
index 2527d16..a1c0770 100644
--- a/WebCore/manual-tests/reset-initiatedDrag.html
+++ b/WebCore/manual-tests/reset-initiatedDrag.html
@@ -4,7 +4,7 @@
 <head>
 </head>
 <body>
-<p><b>BUG ID:</b> <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=9466">Bugzilla bug 9466</a> Assertion failure when dragging an image from the document into Safari's address bar</p>
+<p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=9466">Bugzilla bug 9466</a> Assertion failure when dragging an image from the document into Safari's address bar</p>
 
 <p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b><br>
 1. Drag the apple image into this window&rsquo;s address bar.<br>
diff --git a/WebCore/manual-tests/resources/named-window-blank-target-step2.html b/WebCore/manual-tests/resources/named-window-blank-target-step2.html
index 9b9e192..0275603 100644
--- a/WebCore/manual-tests/resources/named-window-blank-target-step2.html
+++ b/WebCore/manual-tests/resources/named-window-blank-target-step2.html
@@ -4,7 +4,7 @@
 <head>
 </head>
 <body>
-<p><b>BUG ID:</b> <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=7747">Bugzilla bug 7747</a> REGRESSION: Background tab/window auto-refresh in GMail will take focus.</p>
+<p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=7747">Bugzilla bug 7747</a> REGRESSION: Background tab/window auto-refresh in GMail will take focus.</p>
 
 <p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST (continued):</b> <br>
 STEP 3: Click <a target="foo" href="named-window-blank-target-step3.html">this link</a>.
diff --git a/WebCore/manual-tests/resources/named-window-blank-target-step3.html b/WebCore/manual-tests/resources/named-window-blank-target-step3.html
index d919fdf..c510522 100644
--- a/WebCore/manual-tests/resources/named-window-blank-target-step3.html
+++ b/WebCore/manual-tests/resources/named-window-blank-target-step3.html
@@ -4,7 +4,7 @@
 <head>
 </head>
 <body>
-<p><b>BUG ID:</b> <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=7747">Bugzilla bug 7747</a> REGRESSION: Background tab/window auto-refresh in GMail will take focus.</p>
+<p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=7747">Bugzilla bug 7747</a> REGRESSION: Background tab/window auto-refresh in GMail will take focus.</p>
 
 <p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b> <br>
 STEP 4: Click <a href="named-window-blank-target-step4.html">this link</a>.   
diff --git a/WebCore/manual-tests/resources/named-window-blank-target-step4.html b/WebCore/manual-tests/resources/named-window-blank-target-step4.html
index d113491..ee07450 100644
--- a/WebCore/manual-tests/resources/named-window-blank-target-step4.html
+++ b/WebCore/manual-tests/resources/named-window-blank-target-step4.html
@@ -4,7 +4,7 @@
 <head>
 </head>
 <body>
-<p><b>BUG ID:</b> <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=7747">Bugzilla bug 7747</a> REGRESSION: Background tab/window auto-refresh in GMail will take focus.</p>
+<p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=7747">Bugzilla bug 7747</a> REGRESSION: Background tab/window auto-refresh in GMail will take focus.</p>
 
 <p id="success" style="background-color:palegreen; padding:3px;"><b>TEST PASS:</b> 
 If this window is frontmost after STEP 4, the test PASSED.
diff --git a/WebCore/manual-tests/resources/redraw-page-cache-visited-links-2.html b/WebCore/manual-tests/resources/redraw-page-cache-visited-links-2.html
index 61d25c2..c6568dc 100644
--- a/WebCore/manual-tests/resources/redraw-page-cache-visited-links-2.html
+++ b/WebCore/manual-tests/resources/redraw-page-cache-visited-links-2.html
@@ -3,14 +3,14 @@
 <script>
 function runTest() {
 // Uncomment to make this an automated test
-//    // Uses window.history hack; see http://bugzilla.opendarwin.org/show_bug.cgi?id=7135
+//    // Uses window.history hack; see http://bugs.webkit.org/show_bug.cgi?id=7135
 //    window.history[99999] = 1;
 //    window.history.back();
 }
 </script>
 </head>
 <body onload="runTest();">
-<div><a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=8079">Bug 8079 REGRESSION: Redraw from page cache does not show visited links</a></div>
+<div><a href="http://bugs.webkit.org/show_bug.cgi?id=8079">Bug 8079 REGRESSION: Redraw from page cache does not show visited links</a></div>
 <div><br><br></div>
 <ol>
 <li value="3">Click the "Back" button on the browser.
diff --git a/WebCore/manual-tests/scrollbar-hittest.html b/WebCore/manual-tests/scrollbar-hittest.html
index a2aad77..5ddef70 100644
--- a/WebCore/manual-tests/scrollbar-hittest.html
+++ b/WebCore/manual-tests/scrollbar-hittest.html
@@ -4,7 +4,7 @@
 <head>
 </head>
 <body>
-<p><b>BUG ID:</b> <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=5829">http://bugzilla.opendarwin.org/show_bug.cgi?id=5829</a> REGRESSION: cursor tracking and hit testing in scrollable block don't take borders into account</p>
+<p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=5829">http://bugs.webkit.org/show_bug.cgi?id=5829</a> REGRESSION: cursor tracking and hit testing in scrollable block don't take borders into account</p>
 
 <p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b> <br>
 1. Scroll down by clicking in the empty space below the scroll thumb.  <br>
diff --git a/WebCore/manual-tests/scrollbar-hittest2.html b/WebCore/manual-tests/scrollbar-hittest2.html
index e9a6ca1..b44a7621 100644
--- a/WebCore/manual-tests/scrollbar-hittest2.html
+++ b/WebCore/manual-tests/scrollbar-hittest2.html
@@ -3,7 +3,7 @@
 <title></title>
 </head>
 <body>
-<p><b>BUG ID:</b> <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=6149">http://bugzilla.opendarwin.org/show_bug.cgi?id=6149</a> REGRESSION (WebCore-417.5): horizontal scrollbar in overflow with top border doesn't receive mouse events</p>
+<p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=6149">http://bugs.webkit.org/show_bug.cgi?id=6149</a> REGRESSION (WebCore-417.5): horizontal scrollbar in overflow with top border doesn't receive mouse events</p>
 
 <p id="test" style="background-color:skyblue; padding:3px;"><b>TO TEST:</b> <br>
 Scroll right by clicking in the empty space to the right of the scroll thumb.</p>
diff --git a/WebCore/manual-tests/subview-click-assertion.html b/WebCore/manual-tests/subview-click-assertion.html
index 26677a1..121ee2f 100644
--- a/WebCore/manual-tests/subview-click-assertion.html
+++ b/WebCore/manual-tests/subview-click-assertion.html
@@ -4,7 +4,7 @@
 <head>
 </head>
 <body>
-<p><b>BUG ID:</b> <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=9984">Bugzilla bug 9984</a> ASSERTION FAILURE: _private->mouseDownEvent != nil (WebKit/WebView/WebHTMLView.m:4863 -[WebHTMLView(WebInternal) _delegateDragSourceActionMask])</p>
+<p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=9984">Bugzilla bug 9984</a> ASSERTION FAILURE: _private->mouseDownEvent != nil (WebKit/WebView/WebHTMLView.m:4863 -[WebHTMLView(WebInternal) _delegateDragSourceActionMask])</p>
 
 <p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b> 
 Open this test in a new Safari window. In the new window, click once on the text &ldquo;Click me&rdquo;. Do not click
diff --git a/WebCore/manual-tests/tabbing-input-google.html b/WebCore/manual-tests/tabbing-input-google.html
index 9ece319..6770c11 100644
--- a/WebCore/manual-tests/tabbing-input-google.html
+++ b/WebCore/manual-tests/tabbing-input-google.html
@@ -4,7 +4,7 @@
 <head>
 </head>
 <body>
-<p><b>BUG ID:</b> <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=8181">8181</a> REGRESSION: After tabbing in page's field, attempting to tab from Google toolbar search to page fails on first try</p>
+<p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=8181">8181</a> REGRESSION: After tabbing in page's field, attempting to tab from Google toolbar search to page fails on first try</p>
 
 <p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b> <br>
 1) Place the cursor in the Google search field.<br>
diff --git a/WebCore/manual-tests/text-field-autoscroll.html b/WebCore/manual-tests/text-field-autoscroll.html
index 9b81e0b..c7848ec 100644
--- a/WebCore/manual-tests/text-field-autoscroll.html
+++ b/WebCore/manual-tests/text-field-autoscroll.html
@@ -4,7 +4,7 @@
 <head>
 </head>
 <body>
-<p><b>BUG ID:</b> <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=8496">Bugzilla #8496</a> REGRESSION: Dragging to select text around a text field causes the text field to scroll</p>
+<p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=8496">Bugzilla #8496</a> REGRESSION: Dragging to select text around a text field causes the text field to scroll</p>
 
 <p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b> 
 Start dragging in the text above the text field.  Stop where it says "HERE".</p>
diff --git a/WebCore/manual-tests/textarea-after-stylesheet-link.html b/WebCore/manual-tests/textarea-after-stylesheet-link.html
index 90467a0..1b88626 100644
--- a/WebCore/manual-tests/textarea-after-stylesheet-link.html
+++ b/WebCore/manual-tests/textarea-after-stylesheet-link.html
@@ -9,7 +9,7 @@
 </head>
 <body>
 <p>Tests: whether &lt;link rel="stylesheet"/&gt; disturbs the display of text in textareas</p>
-<p>Related bug: <a href = "http://bugzilla.opendarwin.org/show_bug.cgi?id=3751">3751: REGRESSION: affects Blogger, GMail & Wikipedia: empty textarea's which should have content</a></p>
+<p>Related bug: <a href = "http://bugs.webkit.org/show_bug.cgi?id=3751">3751: REGRESSION: affects Blogger, GMail & Wikipedia: empty textarea's which should have content</a></p>
 <p>Success: You will see "passed" inside the texarea below</p>
 <hr>
 <textarea>passed</textarea>
diff --git a/WebCore/manual-tests/textarea-focus.html b/WebCore/manual-tests/textarea-focus.html
index 73499cf..53afe9e 100644
--- a/WebCore/manual-tests/textarea-focus.html
+++ b/WebCore/manual-tests/textarea-focus.html
@@ -8,7 +8,7 @@
 </style>
 </head>
 <body>
-<p><b>BUG ID:</b> <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=8324">Bugzilla bug 8324</a> REGRESSION: textarea :focus not applied immediately</p>
+<p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=8324">Bugzilla bug 8324</a> REGRESSION: textarea :focus not applied immediately</p>
 
 <p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b> 
 Click in the red text area below.
diff --git a/WebCore/manual-tests/whitespace-pre-affinity.html b/WebCore/manual-tests/whitespace-pre-affinity.html
index dbaa582..eac9040 100644
--- a/WebCore/manual-tests/whitespace-pre-affinity.html
+++ b/WebCore/manual-tests/whitespace-pre-affinity.html
@@ -1,6 +1,6 @@
 <html>
 <body>
-<p>This test checks for a regression against http://bugzilla.opendarwin.org/show_bug.cgi?id=3739.</p>
+<p>This test checks for a regression against http://bugs.webkit.org/show_bug.cgi?id=3739.</p>
 NOTES:<ol>
 <li>this MUST be checked in a build because the symptom is an assert</li>
 <li>double-click a few times on the blanks lines below</li>
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 7fc98c7..5f54ad6 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,15 @@
+2007-03-19  Mark Rowe  <mrowe@apple.com>
+
+        Rubber-stamped by Brady.
+
+        Update references to bugzilla.opendarwin.org with bugs.webkit.org.
+
+        * WebInspector/webInspector/inspector.css:
+        * WebView/WebHTMLView.mm:
+        (-[WebHTMLView firstRectForCharacterRange:]):
+        * WebView/WebView.mm:
+        (-[WebView initWithFrame:frameName:groupName:]):
+
 2007-03-18  David Hyatt  <hyatt@apple.com>
 
         Move frame borders out of WebKit and into WebCore.
diff --git a/WebKit/WebInspector/webInspector/inspector.css b/WebKit/WebInspector/webInspector/inspector.css
index 48750ad..27fda01 100644
--- a/WebKit/WebInspector/webInspector/inspector.css
+++ b/WebKit/WebInspector/webInspector/inspector.css
@@ -437,7 +437,7 @@
 }
 
 /* This is a workaround for text-overflow: ellipsis not working on boxes. */
-/* http://bugzilla.opendarwin.org/show_bug.cgi?id=5990 */
+/* http://bugs.webkit.org/show_bug.cgi?id=5990 */
 .infoRow .value div {
     width: 100%;
     overflow: hidden;
diff --git a/WebKit/WebView/WebHTMLView.mm b/WebKit/WebView/WebHTMLView.mm
index 433b0c9..a5b72c5 100644
--- a/WebKit/WebView/WebHTMLView.mm
+++ b/WebKit/WebView/WebHTMLView.mm
@@ -5321,7 +5321,7 @@
     WebFrameBridge *bridge = [self _bridge];
     
     // Just to match NSTextView's behavior. Regression tests cannot detect this;
-    // to reproduce, use a test application from http://bugzilla.opendarwin.org/show_bug.cgi?id=4682
+    // to reproduce, use a test application from http://bugs.webkit.org/show_bug.cgi?id=4682
     // (type something; try ranges (1, -1) and (2, -1).
     if ((theRange.location + theRange.length < theRange.location) && (theRange.location + theRange.length != 0))
         theRange.length = 0;
diff --git a/WebKit/WebView/WebView.mm b/WebKit/WebView/WebView.mm
index dfedcf7..0dad3d1 100644
--- a/WebKit/WebView/WebView.mm
+++ b/WebKit/WebView/WebView.mm
@@ -1681,7 +1681,7 @@
     // may not work with other WebKit applications.  Unsetting DYLD_FRAMEWORK_PATH removes the
     // need for Safari to unset it to prevent it from being passed to applications it launches.
     // Unsetting it when a WebView is first created is as good a place as any.
-    // See <http://bugzilla.opendarwin.org/show_bug.cgi?id=4286> for more details.
+    // See <http://bugs.webkit.org/show_bug.cgi?id=4286> for more details.
     if (getenv("WEBKIT_UNSET_DYLD_FRAMEWORK_PATH")) {
         unsetenv("DYLD_FRAMEWORK_PATH");
         unsetenv("WEBKIT_UNSET_DYLD_FRAMEWORK_PATH");