Changeset 20304 in webkit for trunk/JavaScriptCore/kjs


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

2007-03-19 Mark Rowe <[email protected]>

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 <[email protected]>

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 <[email protected]>

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/JavaScriptCore/kjs
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • 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++;
Note: See TracChangeset for help on using the changeset viewer.