Changeset 20304 in webkit


Ignore:
Timestamp:
Mar 18, 2007 9:32:24 PM (17 years ago)
Author:
bdash
Message:

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:]):
Location:
trunk
Files:
53 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r20295 r20304  
     12007-03-19  Mark Rowe  <mrowe@apple.com>
     2
     3        Rubber-stamped by Brady.
     4
     5        Update references to bugzilla.opendarwin.org with bugs.webkit.org.
     6
     7        * bindings/c/c_utility.cpp:
     8        (KJS::Bindings::convertUTF8ToUTF16):
     9        * kjs/function.cpp:
     10        (KJS::FunctionImp::callAsFunction):
     11        * kjs/grammar.y:
     12        * kjs/keywords.table:
     13        * kjs/lexer.cpp:
     14        (KJS::Lexer::shift):
     15
    1162007-03-18  Geoffrey Garen  <ggaren@apple.com>
    217
  • trunk/JavaScriptCore/bindings/c/c_utility.cpp

    r20292 r20304  
    7373   
    7474    // Check to see if the conversion was successful
    75     // Some plugins return invalid UTF-8 in NPVariantType_String, see <http://bugzilla.opendarwin.org/show_bug.cgi?id=5163>
     75    // Some plugins return invalid UTF-8 in NPVariantType_String, see <http://bugs.webkit.org/show_bug.cgi?id=5163>
    7676    // There is no "bad data" for latin1. It is unlikely that the plugin was really sending text in this encoding,
    7777    // but it should have used UTF-8, and now we are simply avoiding a crash.
  • trunk/JavaScriptCore/kjs/function.cpp

    r18712 r20304  
    126126  // The debugger may have been deallocated by now if the WebFrame
    127127  // we were running in has been destroyed, so refetch it.
    128   // See http://bugzilla.opendarwin.org/show_bug.cgi?id=9477
     128  // See http://bugs.webkit.org/show_bug.cgi?id=9477
    129129  dbg = exec->dynamicInterpreter()->debugger();
    130130
  • trunk/JavaScriptCore/kjs/grammar.y

    r17377 r20304  
    244244  | '{' '}'                             { $$ = new ObjectLiteralNode(); }
    245245  | '{' PropertyList '}'                { $$ = new ObjectLiteralNode($2); }
    246   /* allow extra comma, see http://bugzilla.opendarwin.org/show_bug.cgi?id=5939 */
     246  /* allow extra comma, see http://bugs.webkit.org/show_bug.cgi?id=5939 */
    247247  | '{' PropertyList ',' '}'            { $$ = new ObjectLiteralNode($2); }
    248248;
  • trunk/JavaScriptCore/kjs/keywords.table

    r14403 r20304  
    4545
    4646# these words are reserved for future use in the ECMA spec, but not in WinIE
    47 # (see http://bugzilla.opendarwin.org/show_bug.cgi?id=6179)
     47# (see http://bugs.webkit.org/show_bug.cgi?id=6179)
    4848# abstract      RESERVED
    4949# boolean       RESERVED
  • trunk/JavaScriptCore/kjs/lexer.cpp

    r18712 r20304  
    130130{
    131131  // Here would be a good place to strip Cf characters, but that has caused compatibility problems:
    132   // <http://bugzilla.opendarwin.org/show_bug.cgi?id=10183>.
     132  // <http://bugs.webkit.org/show_bug.cgi?id=10183>.
    133133  while (p--) {
    134134    pos++;
  • trunk/WebCore/ChangeLog

    r20302 r20304  
     12007-03-19  Mark Rowe  <mrowe@apple.com>
     2
     3        Rubber-stamped by Brady.
     4
     5        Update references to bugzilla.opendarwin.org with bugs.webkit.org.
     6
     7        * ChangeLog:
     8        * WebCore.vcproj/WebCore/build-generated-files.sh:
     9        * manual-tests/ATSU-bad-layout.html:
     10        * manual-tests/accidental-strict-mode.html:
     11        * manual-tests/applet-param-no-name.html:
     12        * manual-tests/bidi-parens.html:
     13        * manual-tests/bugzilla-3855.html:
     14        * manual-tests/bugzilla-4840.html:
     15        * manual-tests/bugzilla-6821.html:
     16        * manual-tests/containing-block-position-chage.html:
     17        * manual-tests/contenteditable-link.html:
     18        * manual-tests/css3-cursor-fallback-quirks.html:
     19        * manual-tests/css3-cursor-fallback-strict.html:
     20        * manual-tests/custom-cursors.html:
     21        * manual-tests/dictionary-scrolled-iframe.html:
     22        * manual-tests/dom-manipulation-on-resize.html:
     23        * manual-tests/drag-image-to-address-bar.html:
     24        * manual-tests/empty-link-target.html:
     25        * manual-tests/empty-title-popup.html:
     26        * manual-tests/first-line-style-crash.html:
     27        * manual-tests/invalid-mouse-event.html:
     28        * manual-tests/left-overflow-repaint.html:
     29        * manual-tests/linkjump-3.html:
     30        * manual-tests/log-keypress-events.html:
     31        * manual-tests/named-window-blank-target.html:
     32        * manual-tests/plain-text-paste.html:
     33        * manual-tests/plugin-controller-datasource.html:
     34        * manual-tests/pre-tab-selection-rect.html:
     35        * manual-tests/redirection-target.html:
     36        * manual-tests/redraw-page-cache-visited-links.html:
     37        * manual-tests/reset-initiatedDrag.html:
     38        * manual-tests/resources/named-window-blank-target-step2.html:
     39        * manual-tests/resources/named-window-blank-target-step3.html:
     40        * manual-tests/resources/named-window-blank-target-step4.html:
     41        * manual-tests/resources/redraw-page-cache-visited-links-2.html:
     42        * manual-tests/scrollbar-hittest.html:
     43        * manual-tests/scrollbar-hittest2.html:
     44        * manual-tests/subview-click-assertion.html:
     45        * manual-tests/tabbing-input-google.html:
     46        * manual-tests/text-field-autoscroll.html:
     47        * manual-tests/textarea-after-stylesheet-link.html:
     48        * manual-tests/textarea-focus.html:
     49        * manual-tests/whitespace-pre-affinity.html:
     50
    1512007-03-18  Krzysztof Kowalczyk  <kkowalczyk@gmail.com>
    252
     
    1963619686        Reviewed by Eric.
    1963719687
    19638         http://bugzilla.opendarwin.org/show_bug.cgi?id=10587
     19688        http://bugs.webkit.org/show_bug.cgi?id=10587
    1963919689        pointer-events is not implemented for RenderSVGImage or RenderSVGText
    1964019690
  • trunk/WebCore/WebCore.vcproj/WebCore/build-generated-files.sh

    r19855 r20304  
    88SRCROOT=`realpath "$SRCROOT"`
    99# Do a little dance to get the path into 8.3 form to make it safe for gnu make
    10 # http://bugzilla.opendarwin.org/show_bug.cgi?id=8173
     10# http://bugs.webkit.org/show_bug.cgi?id=8173
    1111SRCROOT=`cygpath -m -s "$SRCROOT"`
    1212SRCROOT=`cygpath -u "$SRCROOT"`
  • trunk/WebCore/manual-tests/ATSU-bad-layout.html

    r15305 r20304  
    55</head>
    66<body>
    7 <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>
     7<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>
    88
    99<p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b>
  • trunk/WebCore/manual-tests/accidental-strict-mode.html

    r13530 r20304  
    1 <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>
     1<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>
    22
    33<ol>
  • trunk/WebCore/manual-tests/applet-param-no-name.html

    r13955 r20304  
    1 <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>
     1<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>
    22<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>
    33<applet code=""><param></applet>
  • trunk/WebCore/manual-tests/bidi-parens.html

    r11995 r20304  
    33<style>
    44.console {
    5         font-family: Arial, Times New Roman
     5    font-family: Arial, Times New Roman
    66}
    77</style>
    88</head>
    99<body>
    10 <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>
     10<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>
    1111<p>Success: parentheses encapsulate word.</p>
    1212<p>Failure: parentheses face away from word.</p>
  • trunk/WebCore/manual-tests/bugzilla-3855.html

    r11995 r20304  
    55</head>
    66<body>
    7 <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>
     7<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>
    88
    99<p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b>
  • trunk/WebCore/manual-tests/bugzilla-4840.html

    r13135 r20304  
    55</head>
    66<body>
    7 <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>
     7<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>
    88
    99<p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b>
  • trunk/WebCore/manual-tests/bugzilla-6821.html

    r12756 r20304  
    1414</head>
    1515<body>
    16 <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>
     16<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>
    1717
    1818<p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b>
  • trunk/WebCore/manual-tests/containing-block-position-chage.html

    r14757 r20304  
    1919<body onload="test()">
    2020    <p>
    21         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>
     21        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>
    2222        REGRESSION: [Incremental Repaint] DHTML movement test failures</i>.
    2323    </p>
  • trunk/WebCore/manual-tests/contenteditable-link.html

    r17629 r20304  
    1414
    1515<BODY>
    16 <P>Repro movie for bug <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=7156">#7156</a></P>
     16<P>Repro movie for bug <a href="http://bugs.webkit.org/show_bug.cgi?id=7156">#7156</a></P>
    1717
    1818<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>
  • trunk/WebCore/manual-tests/css3-cursor-fallback-quirks.html

    r16549 r20304  
    22<head><title>Quirks custom cursor tests</title></head>
    33<body>
    4 <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>
     4<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>
    55<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>
    66
     
    99
    1010<hr>
    11 <p><a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=6001">Bug 6001</a>: WebKit does not handle fallback custom cursors</p>
    12 <p><a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=9013">Bug 9013</a>: Let correct CSS custom cursor declarations parse</p>
     11<p><a href="http://bugs.webkit.org/show_bug.cgi?id=6001">Bug 6001</a>: WebKit does not handle fallback custom cursors</p>
     12<p><a href="http://bugs.webkit.org/show_bug.cgi?id=9013">Bug 9013</a>: Let correct CSS custom cursor declarations parse</p>
    1313<p>In each of the blue boxes below, the cursor should become a help cursor (question mark).</p>
    1414<table><tr>
  • trunk/WebCore/manual-tests/css3-cursor-fallback-strict.html

    r16549 r20304  
    44<head><title>Strict custom cursor tests</title></head>
    55<body>
    6 <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>
     6<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>
    77<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>
    88
     
    1111
    1212<hr>
    13 <p><a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=6001">Bug 6001</a>: WebKit does not handle fallback custom cursors</p>
    14 <p><a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=9013">Bug 9013</a>: Let correct CSS custom cursor declarations parse</p>
     13<p><a href="http://bugs.webkit.org/show_bug.cgi?id=6001">Bug 6001</a>: WebKit does not handle fallback custom cursors</p>
     14<p><a href="http://bugs.webkit.org/show_bug.cgi?id=9013">Bug 9013</a>: Let correct CSS custom cursor declarations parse</p>
    1515<p>In each of the blue boxes below, the cursor should become a help cursor (question mark).</p>
    1616<table><tr>
  • trunk/WebCore/manual-tests/custom-cursors.html

    r15505 r20304  
    1 <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>
     1<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>
    22Move the cursor over the blue box - it should not turn into a missing image icon, and should turn into an I-beam over text.
    33
     
    66
    77<hr>
    8 <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=8991">Bug 6001</a>: WebKit does not handle fallback custom cursors<p>
     8<a href="http://bugs.webkit.org/show_bug.cgi?id=8991">Bug 6001</a>: WebKit does not handle fallback custom cursors<p>
    99Move the cursor over the blue box - it should become a help cursor (question mark).
    1010<div style="width:100px;height:100px;background-color:lightblue; cursor:url(resources/helpCursor.tiff), help;"></div>
  • trunk/WebCore/manual-tests/dictionary-scrolled-iframe.html

    r13754 r20304  
    55</head>
    66<body>
    7 <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>
     7<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>
    88
    99<p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b><br>
  • trunk/WebCore/manual-tests/dom-manipulation-on-resize.html

    r14371 r20304  
    55<script>
    66window.onresize = function() {
    7         var tbody = document.createElement("TBODY")
     7    var tbody = document.createElement("TBODY")
    88
    9         var m = (document.getElementsByTagName("TABLE"))[0]
    10         if(m.hasChildNodes()) m.removeChild(m.lastChild)
     9    var m = (document.getElementsByTagName("TABLE"))[0]
     10    if(m.hasChildNodes()) m.removeChild(m.lastChild)
    1111
    12         var tr = tbody.appendChild(document.createElement("TR"))
     12    var tr = tbody.appendChild(document.createElement("TR"))
    1313
    14         m.appendChild(tbody)
     14    m.appendChild(tbody)
    1515}
    1616</script>
     
    1919<table></table>
    2020<p>
    21 <b>BUG ID: <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=8739">Bugzilla bug 8739</a></b>
     21<b>BUG ID: <a href="http://bugs.webkit.org/show_bug.cgi?id=8739">Bugzilla bug 8739</a></b>
    2222Crash in RenderTableSection::paint due to manipulating DOM on resize
    2323</p>
  • trunk/WebCore/manual-tests/drag-image-to-address-bar.html

    r15688 r20304  
    55</head>
    66<body>
    7 <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>
     7<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>
    88
    99<p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b>
  • trunk/WebCore/manual-tests/empty-link-target.html

    r11995 r20304  
    2020
    2121<body onload="test()">
    22 <p>Bug: <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=6382">REGRESSION: Repro crash when clicking link with target="_blank"</a></p>
     22<p>Bug: <a href="http://bugs.webkit.org/show_bug.cgi?id=6382">REGRESSION: Repro crash when clicking link with target="_blank"</a></p>
    2323<p>If the test passes, you will see a PASS message below. (It's normal for a new window to open.)</p>
    2424<hr>
  • trunk/WebCore/manual-tests/empty-title-popup.html

    r15303 r20304  
    1 <p>This demonstrates <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=9833">bug 9833</a>.</p>
     1<p>This demonstrates <a href="http://bugs.webkit.org/show_bug.cgi?id=9833">bug 9833</a>.</p>
    22<p>Select the second item on the pop up.
    33<select><option></option><option>Pick me!</option></select></p>
  • trunk/WebCore/manual-tests/first-line-style-crash.html

    r14278 r20304  
    88<body>
    99    <p>
    10         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>
     10        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>
    1111        crash (hang?) on subtlegradient.com article page</i>.
    1212    </p>
  • trunk/WebCore/manual-tests/invalid-mouse-event.html

    r15544 r20304  
    1 <p>Test for <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=8272">bug 8272</a>:
     1<p>Test for <a href="http://bugs.webkit.org/show_bug.cgi?id=8272">bug 8272</a>:
    22Use of window.open & window.close can cause crash.</p>
    33<ol>
  • trunk/WebCore/manual-tests/left-overflow-repaint.html

    r13483 r20304  
    55</head>
    66<body>
    7 <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>
     7<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>
    88
    99<p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b>
  • trunk/WebCore/manual-tests/linkjump-3.html

    r12504 r20304  
    55</head>
    66<body>
    7 <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>
     7<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>
    88
    99<p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b>
  • trunk/WebCore/manual-tests/log-keypress-events.html

    r11995 r20304  
    11<html>
    22<body>
    3 <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>
     3<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>
    44<form name="f">
    55Type here: <input id="field" type="text" />
  • trunk/WebCore/manual-tests/named-window-blank-target.html

    r13436 r20304  
    88</head>
    99<body>
    10 <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>
     10<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>
    1111
    1212<p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b> <br>
  • trunk/WebCore/manual-tests/plain-text-paste.html

    r16925 r20304  
    55</head>
    66<body>
    7 <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
    8 <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>
     7<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
     8<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>
    99
    1010<p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b><br>
  • trunk/WebCore/manual-tests/plugin-controller-datasource.html

    r14142 r20304  
    55</head>
    66<body>
    7 <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>
     7<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>
    88
    99<p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b>
  • trunk/WebCore/manual-tests/pre-tab-selection-rect.html

    • Property allow-tabs set to *
    r11995 r20304  
    3434<body>
    3535<p>
    36 This is a test for <i>http://bugzilla.opendarwin.org/show_bug.cgi?id=6043
     36This is a test for <i>http://bugs.webkit.org/show_bug.cgi?id=6043
    3737Incorrect selection highlighting in pre-formatted text with tabs</i>.
    3838</p>
  • trunk/WebCore/manual-tests/redirection-target.html

    r12598 r20304  
    33Check that the title bar does not say "Loading" any more.
    44The bug was <a href="rdar://problem/4432562">4432562</a> in Radar and
    5 <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=7058">7058</a> in Bugzilla.
     5<a href="http://bugs.webkit.org/show_bug.cgi?id=7058">7058</a> in Bugzilla.
    66</p>
  • trunk/WebCore/manual-tests/redraw-page-cache-visited-links.html

    r14907 r20304  
    99function runTest() {
    1010// Uncomment to make this an automated test
    11 //    // Uses window.history hack; see http://bugzilla.opendarwin.org/show_bug.cgi?id=7135
     11//    // Uses window.history hack; see http://bugs.webkit.org/show_bug.cgi?id=7135
    1212//    if (!window.history[99999]) {
    1313//        var element = document.getElementById("mylink");
     
    2525</head>
    2626<body onload="runTest();">
    27 <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>
     27<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>
    2828<ol>
    2929<li>The link in Step 2 should be rendered in an unvisited link color first.
  • trunk/WebCore/manual-tests/reset-initiatedDrag.html

    r14897 r20304  
    55</head>
    66<body>
    7 <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>
     7<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>
    88
    99<p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b><br>
  • trunk/WebCore/manual-tests/resources/named-window-blank-target-step2.html

    r13436 r20304  
    55</head>
    66<body>
    7 <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>
     7<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>
    88
    99<p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST (continued):</b> <br>
  • trunk/WebCore/manual-tests/resources/named-window-blank-target-step3.html

    r13436 r20304  
    55</head>
    66<body>
    7 <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>
     7<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>
    88
    99<p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b> <br>
  • trunk/WebCore/manual-tests/resources/named-window-blank-target-step4.html

    r13436 r20304  
    55</head>
    66<body>
    7 <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>
     7<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>
    88
    99<p id="success" style="background-color:palegreen; padding:3px;"><b>TEST PASS:</b>
  • trunk/WebCore/manual-tests/resources/redraw-page-cache-visited-links-2.html

    r14905 r20304  
    44function runTest() {
    55// Uncomment to make this an automated test
    6 //    // Uses window.history hack; see http://bugzilla.opendarwin.org/show_bug.cgi?id=7135
     6//    // Uses window.history hack; see http://bugs.webkit.org/show_bug.cgi?id=7135
    77//    window.history[99999] = 1;
    88//    window.history.back();
     
    1111</head>
    1212<body onload="runTest();">
    13 <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>
     13<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>
    1414<div><br><br></div>
    1515<ol>
  • trunk/WebCore/manual-tests/scrollbar-hittest.html

    r11995 r20304  
    55</head>
    66<body>
    7 <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>
     7<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>
    88
    99<p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b> <br>
  • trunk/WebCore/manual-tests/scrollbar-hittest2.html

    r16824 r20304  
    44</head>
    55<body>
    6 <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>
     6<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>
    77
    88<p id="test" style="background-color:skyblue; padding:3px;"><b>TO TEST:</b> <br>
  • trunk/WebCore/manual-tests/subview-click-assertion.html

    r15688 r20304  
    55</head>
    66<body>
    7 <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>
     7<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>
    88
    99<p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b>
  • trunk/WebCore/manual-tests/tabbing-input-google.html

    r14005 r20304  
    55</head>
    66<body>
    7 <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>
     7<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>
    88
    99<p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b> <br>
  • trunk/WebCore/manual-tests/text-field-autoscroll.html

    r14002 r20304  
    55</head>
    66<body>
    7 <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>
     7<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>
    88
    99<p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b>
  • trunk/WebCore/manual-tests/textarea-after-stylesheet-link.html

    r11995 r20304  
    1010<body>
    1111<p>Tests: whether &lt;link rel="stylesheet"/&gt; disturbs the display of text in textareas</p>
    12 <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>
     12<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>
    1313<p>Success: You will see "passed" inside the texarea below</p>
    1414<hr>
  • trunk/WebCore/manual-tests/textarea-focus.html

    r13890 r20304  
    99</head>
    1010<body>
    11 <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>
     11<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>
    1212
    1313<p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b>
  • trunk/WebCore/manual-tests/whitespace-pre-affinity.html

    r11995 r20304  
    11<html>
    22<body>
    3 <p>This test checks for a regression against http://bugzilla.opendarwin.org/show_bug.cgi?id=3739.</p>
     3<p>This test checks for a regression against http://bugs.webkit.org/show_bug.cgi?id=3739.</p>
    44NOTES:<ol>
    55<li>this MUST be checked in a build because the symptom is an assert</li>
  • trunk/WebKit/ChangeLog

    r20269 r20304  
     12007-03-19  Mark Rowe  <mrowe@apple.com>
     2
     3        Rubber-stamped by Brady.
     4
     5        Update references to bugzilla.opendarwin.org with bugs.webkit.org.
     6
     7        * WebInspector/webInspector/inspector.css:
     8        * WebView/WebHTMLView.mm:
     9        (-[WebHTMLView firstRectForCharacterRange:]):
     10        * WebView/WebView.mm:
     11        (-[WebView initWithFrame:frameName:groupName:]):
     12
    1132007-03-18  David Hyatt  <hyatt@apple.com>
    214
  • trunk/WebKit/WebInspector/webInspector/inspector.css

    r19554 r20304  
    438438
    439439/* This is a workaround for text-overflow: ellipsis not working on boxes. */
    440 /* http://bugzilla.opendarwin.org/show_bug.cgi?id=5990 */
     440/* http://bugs.webkit.org/show_bug.cgi?id=5990 */
    441441.infoRow .value div {
    442442    width: 100%;
  • trunk/WebKit/WebView/WebHTMLView.mm

    r20193 r20304  
    53225322   
    53235323    // Just to match NSTextView's behavior. Regression tests cannot detect this;
    5324     // to reproduce, use a test application from http://bugzilla.opendarwin.org/show_bug.cgi?id=4682
     5324    // to reproduce, use a test application from http://bugs.webkit.org/show_bug.cgi?id=4682
    53255325    // (type something; try ranges (1, -1) and (2, -1).
    53265326    if ((theRange.location + theRange.length < theRange.location) && (theRange.location + theRange.length != 0))
  • trunk/WebKit/WebView/WebView.mm

    r20263 r20304  
    16821682    // need for Safari to unset it to prevent it from being passed to applications it launches.
    16831683    // Unsetting it when a WebView is first created is as good a place as any.
    1684     // See <http://bugzilla.opendarwin.org/show_bug.cgi?id=4286> for more details.
     1684    // See <http://bugs.webkit.org/show_bug.cgi?id=4286> for more details.
    16851685    if (getenv("WEBKIT_UNSET_DYLD_FRAMEWORK_PATH")) {
    16861686        unsetenv("DYLD_FRAMEWORK_PATH");
Note: See TracChangeset for help on using the changeset viewer.