Timeline



Sep 20, 2009:

10:42 PM Changeset in webkit [48573] by oliver@apple.com
  • 8 edits in trunk/JavaScriptCore

SNES is too slow
https://bugs.webkit.org/show_bug.cgi?id=29534

Reviewed by Maciej Stachowiak.

The problem was that the emulator used multiple classes with
more properties than our dictionary cutoff allowed, this resulted
in more or less all critical logic inside the emulator requiring
uncached property access.

Rather than simply bumping the dictionary cutoff, this patch
recognises that there are two ways to create a "dictionary"
structure. Either by adding a large number of properties, or
by removing a property. In the case of adding properties we
know all the existing properties will maintain their existing
offsets, so we could cache access to those properties, if we
know they won't be removed.

To make this possible, this patch adds the logic required to
distinguish a dictionary created by addition from one created
by removal. With this logic in place we can now cache access
to objects with large numbers of properties.

SNES performance improved by more than 6x.

7:30 PM Changeset in webkit [48572] by abarth@webkit.org
  • 3 edits
    18 adds in trunk

2009-09-20 Adam Barth <abarth@webkit.org>

Reviewed by Maciej Stachowiak.

Crash when clicking link in unload handler
https://bugs.webkit.org/show_bug.cgi?id=29525

Test that the first navigation always wins when the page tries to start
a new navigation in an unload handler.

  • fast/loader/resources/fail-and-notify-done.html: Added.
  • fast/loader/resources/pass-and-notify-done.html: Added.
  • fast/loader/unload-form-about-blank-expected.txt: Added.
  • fast/loader/unload-form-about-blank.html: Added.
  • fast/loader/unload-form-expected.txt: Added.
  • fast/loader/unload-form-post-about-blank-expected.txt: Added.
  • fast/loader/unload-form-post-about-blank.html: Added.
  • fast/loader/unload-form-post-expected.txt: Added.
  • fast/loader/unload-form-post.html: Added.
  • fast/loader/unload-form.html: Added.
  • fast/loader/unload-hyperlink-expected.txt: Added.
  • fast/loader/unload-hyperlink.html: Added.
  • fast/loader/unload-javascript-url-expected.txt: Added.
  • fast/loader/unload-javascript-url.html: Added.
  • fast/loader/unload-reload-expected.txt: Added.
  • fast/loader/unload-reload.html: Added.
  • fast/loader/unload-window-location-expected.txt: Added.
  • fast/loader/unload-window-location.html: Added.

2009-09-20 Adam Barth <abarth@webkit.org>

Reviewed by Maciej Stachowiak.

Crash when clicking link in unload handler
https://bugs.webkit.org/show_bug.cgi?id=29525

Test that the first navigation always wins when the page tries to start
a new navigation in an unload handler.

Tests: fast/loader/unload-form-about-blank.html

fast/loader/unload-form-post-about-blank.html
fast/loader/unload-form-post.html
fast/loader/unload-form.html
fast/loader/unload-hyperlink.html
fast/loader/unload-javascript-url.html
fast/loader/unload-reload.html
fast/loader/unload-window-location.html

  • loader/FrameLoader.cpp: (WebCore::FrameLoader::loadURL): (WebCore::FrameLoader::loadWithDocumentLoader):
6:23 PM Changeset in webkit [48571] by kov@webkit.org
  • 2 edits in trunk/WebCore

2009-09-18 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk>

Reviewed by Xan Lopez.

[GTK] Sometimes crashes when a page is destroyed/loads another URL while playing video
https://bugs.webkit.org/show_bug.cgi?id=29496

Protect the video sink object, and destroy it in an idle callback
to hopefully avoid a race condition that leads to a crash.

This is already tested by media/video-seekable.html

  • platform/graphics/gtk/MediaPlayerPrivateGStreamer.cpp: (WebCore::idleUnref): (WebCore::MediaPlayerPrivate::~MediaPlayerPrivate): (WebCore::MediaPlayerPrivate::createGSTPlayBin):
10:45 AM Changeset in webkit [48570] by xan@webkit.org
  • 2 edits in trunk/WebKit/gtk

2009-09-20 Xan Lopez <xlopez@igalia.com>

Reviewed by Gustavo Noronha.

Small documentation fix.

  • webkit/webkithittestresult.cpp:
8:34 AM Changeset in webkit [48569] by ddkilzer@apple.com
  • 2 edits in trunk/WebKitTools

<http://webkit.org/b/29521> run-webkit-tests: use require instead eval to load DumpRenderTreeSupport module

Reviewed by Mark Rowe.

The require statement is like the use statement, except that it
is run during script execution instead of during the 'BEGIN'
phase. This makes it possible to change @INC before the require
statement is run. See 'require' and 'use' in the perlfunc(1)
manpage and 'BEGIN' in perlmod(1) manpage.

  • Scripts/run-webkit-tests: Replace eval statement with require

statement.

Sep 19, 2009:

6:13 PM Changeset in webkit [48568] by oliver@apple.com
  • 4 edits
    3 adds in trunk

Implement ES5 Object.create function
https://bugs.webkit.org/show_bug.cgi?id=29524

Reviewed by Maciej Stachowiak

Implement Object.create. Very simple patch, effectively Object.defineProperties
only creating the target object itself.

5:36 PM Changeset in webkit [48567] by kov@webkit.org
  • 3 edits in trunk/WebCore

GTK+ build fix, Qt blind build fix

3:37 PM Changeset in webkit [48566] by weinig@apple.com
  • 10 edits
    2 deletes in trunk

WebCore: Fix for https://bugs.webkit.org/show_bug.cgi?id=29519
Remove JSNameNodeCollection and just use StaticNodeList

Reviewed by Oliver Hunt.

  • WebCore.vcproj/WebCore.vcproj:
  • WebCore.xcodeproj/project.pbxproj:
  • WebCoreSources.bkl:
  • bindings/js/JSHTMLCollectionCustom.cpp:

(WebCore::getNamedItems):

  • bindings/js/JSHTMLFormElementCustom.cpp:

(WebCore::JSHTMLFormElement::nameGetter):

  • bindings/js/JSNamedNodesCollection.cpp: Removed.
  • bindings/js/JSNamedNodesCollection.h: Removed.

LayoutTests: Update tests for https://bugs.webkit.org/show_bug.cgi?id=29519
Remove JSNameNodeCollection and just use StaticNodeList

Reviewed by Oliver Hunt.

  • fast/dom/HTMLSelectElement/named-options-expected.txt:
  • fast/dom/HTMLSelectElement/script-tests/named-options.js:
  • fast/dom/prototype-inheritance-2-expected.txt:
3:14 PM Changeset in webkit [48565] by oliver@apple.com
  • 4 edits
    3 adds in trunk

Implement ES5 Object.defineProperties function
https://bugs.webkit.org/show_bug.cgi?id=29522

Reviewed by Sam Weinig

Implement Object.defineProperties. Fairly simple patch, simply makes use of
existing functionality used for defineProperty.

1:29 PM Changeset in webkit [48564] by dbates@webkit.org
  • 3 edits
    8 adds in trunk

2009-09-19 Daniel Bates <dbates@webkit.org>

Reviewed by Adam Barth.

https://bugs.webkit.org/show_bug.cgi?id=29511


Fixes an issue where script code that contains non-ASCII characters may bypass the
XSSAuditor.


Before performing a comparison between the script source code and input parameters, we
remove all non-ASCII characters, including non-printable ASCII characters from the
script source code and input parameters.

Tests: http/tests/security/xssAuditor/img-onerror-non-ASCII-char.html

http/tests/security/xssAuditor/img-onerror-non-ASCII-char-default-encoding.html
http/tests/security/xssAuditor/img-onerror-non-ASCII-char2-default-encoding.html
http/tests/security/xssAuditor/img-onerror-non-ASCII-char2.html

  • page/XSSAuditor.cpp: (WebCore::isNonCanonicalCharacter): Modified to remove all non-ASCII characters, including non-printable ASCII characters.

2009-09-19 Daniel Bates <dbates@webkit.org>

Reviewed by Adam Barth.

https://bugs.webkit.org/show_bug.cgi?id=29511


Tests that scripts that contain non-ASCII characters do not bypass the XSSAuditor.

  • http/tests/security/xssAuditor/img-onerror-non-ASCII-char-expected.txt: Added.
  • http/tests/security/xssAuditor/img-onerror-non-ASCII-char.html: Added.
  • http/tests/security/xssAuditor/img-onerror-non-ASCII-char-default-encoding-expected: Added.
  • http/tests/security/xssAuditor/img-onerror-non-ASCII-char-default-encoding.html: Added.
  • http/tests/security/xssAuditor/img-onerror-non-ASCII-char2-default-encoding-expected.txt: Added.
  • http/tests/security/xssAuditor/img-onerror-non-ASCII-char2-default-encoding.html: Added.
  • http/tests/security/xssAuditor/img-onerror-non-ASCII-char2-expected.txt: Added.
  • http/tests/security/xssAuditor/img-onerror-non-ASCII-char2.html: Added.
12:51 PM Changeset in webkit [48563] by mitz@apple.com
  • 2 edits in trunk/JavaScriptCore

Fix clean debug builds.

11:46 AM Changeset in webkit [48562] by Simon Fraser
  • 3 edits
    5 adds in trunk

2009-09-19 Simon Fraser <Simon Fraser>

Reviewed by Dan Bernstein.

Incorrect animation with scale(0) transform (singular matrix)
https://bugs.webkit.org/show_bug.cgi?id=29465

Make accelerated scale() and translate() animations go through the component animation
path (rather than just matrix animation) to avoid problems with singular scale matrices,
and be slightly more efficient.

Test: compositing/transitions/singular-scale-transition.html

  • platform/graphics/mac/GraphicsLayerCA.mm: (WebCore::getTransformFunctionValue): (WebCore::getValueFunctionNameForTransformOperation):
11:22 AM Changeset in webkit [48561] by eric@webkit.org
  • 2 edits
    1 add in trunk/WebKit/qt

2009-09-19 Benjamin Poulain <benjamin.poulain@nokia.com>

Reviewed by Simon Hausmann.

https://bugs.webkit.org/show_bug.cgi?id=29345
The tests of QWebFrame did not use QTRY_VERIFY for
tests involving the event loop.

  • tests/qwebframe/tst_qwebframe.cpp:
  • tests/util.h: Added. Copy of tests/shared/util.h of Qt
11:15 AM Changeset in webkit [48560] by eric@webkit.org
  • 2 edits
    3 adds in trunk/WebKit/qt

2009-09-19 Jakub Wieczorek <faw217@gmail.com>

Reviewed by Simon Hausmann.

[Qt] Add an autotest stub for QWebGraphicsItem.

It just calls all the functions and makes sure they don't crash.

  • tests/qwebgraphicsitem/qwebgraphicsitem.pro: Added.
  • tests/qwebgraphicsitem/tst_qwebgraphicsitem.cpp: Added. (tst_QWebGraphicsItem::qwebgraphicsitem):
  • tests/tests.pro:
11:02 AM Changeset in webkit [48559] by eric@webkit.org
  • 9 edits
    19 adds in trunk

2009-09-19 Alex Milowski <alex@milowski.com>

Reviewed by Maciej Stachowiak.

Basic tests for msub, msup, and mtable/mtr/mtd

  • mathml: Added.
  • mathml/presentation: Added.
  • mathml/presentation/sub.xhtml: Added.
  • mathml/presentation/sup.xhtml: Added.
  • mathml/presentation/tables.xhtml: Added.
  • platform/mac/mathml: Added.
  • platform/mac/mathml/presentation: Added.
  • platform/mac/mathml/presentation/sub-expected.txt: Added.
  • platform/mac/mathml/presentation/sup-expected.txt: Added.
  • platform/mac/mathml/presentation/tables-expected.txt: Added.

2009-09-19 Alex Milowski <alex@milowski.com>

Reviewed by Maciej Stachowiak.

Adds CSS styling and basic DOM element support for MathML

  • DerivedSources.make: Added user stylesheet and tag factory generation
  • WebCore.xcodeproj/project.pbxproj: Added new DOM element code
  • css/CSSParser.cpp: (WebCore::CSSParser::parseAttr): Added check for document since stylesheet can be added before there is a document
  • css/CSSStyleSelector.cpp: (WebCore::CSSStyleSelector::styleForElement): Added check to add MathML user agent stylesheet
  • css/mathml.css: Added. MathML user agent stylesheet
  • dom/Document.cpp: (WebCore::Document::createElement): Added support for creation of MathML DOM objects
  • dom/Node.h: (WebCore::Node::isMathMLElement): Added check method for whether the node is a MathML node
  • mathml: Added.
  • mathml/MathMLElement.cpp: Added. (WebCore::MathMLElement::MathMLElement): (WebCore::MathMLElement::create): (WebCore::MathMLElement::createRenderer):
  • mathml/MathMLElement.h: Added. (WebCore::MathMLElement::isMathMLElement): MathML DOM base class
  • mathml/MathMLInlineContainerElement.cpp: Added. (WebCore::MathMLInlineContainerElement::MathMLInlineContainerElement): (WebCore::MathMLInlineContainerElement::create): (WebCore::MathMLInlineContainerElement::createRenderer):
  • mathml/MathMLInlineContainerElement.h: Added. Base class for non-text containers
  • mathml/MathMLMathElement.cpp: Added. (WebCore::MathMLMathElement::MathMLMathElement): (WebCore::MathMLMathElement::create):
  • mathml/MathMLMathElement.h: Added. Root Math element
  • mathml/mathtags.in: Added. Element list mappings
  • page/Frame.cpp: (WebCore::Frame::Frame):
10:41 AM Changeset in webkit [48558] by Simon Hausmann
  • 3 edits in trunk/JavaScriptCore

QtWebKit Windows CE compile fix

Patch by Joerg Bornemann <joerg.bornemann@nokia.com> on 2009-09-19
Reviewed by George Staikos.

https://bugs.webkit.org/show_bug.cgi?id=29379

There is no _aligned_alloc or _aligned_free on Windows CE.
We just use the Windows code that was there before and use VirtualAlloc.
But that also means that the BLOCK_SIZE must be 64K as this function
allocates on 64K boundaries.

  • runtime/Collector.cpp:

(JSC::Heap::allocateBlock):
(JSC::Heap::freeBlock):

  • runtime/Collector.h:
10:28 AM Changeset in webkit [48557] by oliver@apple.com
  • 3 edits in trunk/JavaScriptCore

Windows build fix part2

10:17 AM Changeset in webkit [48556] by abarth@webkit.org
  • 5 edits
    6 adds in trunk

2009-09-19 Adam Barth <abarth@webkit.org>

Reviewed by Oliver Hunt.

Canvas drawn with data URL image raises SECURITY_ERR when toDataUrl() called.
https://bugs.webkit.org/show_bug.cgi?id=29305

Test that drawing a data URL image onto a canvas behaves as expected.
Note the tricky case involving a data URL SVG image with an embedded
remote image.

Also, test that document.domain state doesn't affect canvas taint
state.

  • http/tests/security/canvas-remote-read-data-url-image-expected.txt: Added.
  • http/tests/security/canvas-remote-read-data-url-image.html: Added.
  • http/tests/security/canvas-remote-read-data-url-svg-image-expected.txt: Added.
  • http/tests/security/canvas-remote-read-data-url-svg-image.html: Added.
  • http/tests/security/canvas-remote-read-remote-image-document-domain-expected.txt: Added.
  • http/tests/security/canvas-remote-read-remote-image-document-domain.html: Added.

2009-09-19 Adam Barth <abarth@webkit.org>

Reviewed by Oliver Hunt.

Canvas drawn with data URL image raises SECURITY_ERR when toDataUrl() called.
https://bugs.webkit.org/show_bug.cgi?id=29305

We need to special-case data URLs when tainting a canvas because we
treat data URLs has having no security origin, unlike other
browsers. The reason we do this is to help sites avoid XSS via data
URLs, but that consideration doesn't apply to canvas taint.

Also, we were previously incorrectly taking document.domain state
into account when tainting canvas.

Tests: http/tests/security/canvas-remote-read-data-url-image.html

http/tests/security/canvas-remote-read-data-url-svg-image.html
http/tests/security/canvas-remote-read-remote-image-document-domain.html

  • html/canvas/CanvasRenderingContext2D.cpp: (WebCore::CanvasRenderingContext2D::checkOrigin): (WebCore::CanvasRenderingContext2D::createPattern):
  • page/SecurityOrigin.cpp: (WebCore::SecurityOrigin::taintsCanvas):
  • page/SecurityOrigin.h:
10:09 AM Changeset in webkit [48555] by oliver@apple.com
  • 3 edits in trunk/JavaScriptCore

Windows build fix part 1

2:46 AM Changeset in webkit [48554] by hamaji@chromium.org
  • 139 edits
    142 moves
    4 adds in trunk/LayoutTests

2009-09-19 Shinichiro Hamaji <hamaji@chromium.org>

Rubber-stamped by Eric Seidel.

js tests should move into jstests subdirectory instead of resources/
https://bugs.webkit.org/show_bug.cgi?id=25880

Migration for svg directory.

  • svg/custom/SVGException.html:
  • svg/custom/getSubStringLength.html:
  • svg/custom/immutable-properties.html:
  • svg/custom/resources/SVGException.js: Removed.
  • svg/custom/resources/TEMPLATE.html: Removed.
  • svg/custom/resources/getSubStringLength.js: Removed.
  • svg/custom/resources/immutable-properties.js: Removed.
  • svg/custom/resources/selectSubString.js: Removed.
  • svg/custom/resources/svg-fonts-in-text-controls.js: Removed.
  • svg/custom/resources/svg-modify-currentTranslate.js: Removed.
  • svg/custom/resources/svg-xml-dom-sync.js: Removed.
  • svg/custom/resources/tearoffs-with-tearoffs.js: Removed.
  • svg/custom/script-tests: Added.
  • svg/custom/script-tests/SVGException.js: Copied from LayoutTests/svg/custom/resources/SVGException.js.
  • svg/custom/script-tests/TEMPLATE.html: Copied from LayoutTests/svg/custom/resources/TEMPLATE.html.
  • svg/custom/script-tests/getSubStringLength.js: Copied from LayoutTests/svg/custom/resources/getSubStringLength.js.
  • svg/custom/script-tests/immutable-properties.js: Copied from LayoutTests/svg/custom/resources/immutable-properties.js.
  • svg/custom/script-tests/selectSubString.js: Copied from LayoutTests/svg/custom/resources/selectSubString.js.
  • svg/custom/script-tests/svg-fonts-in-text-controls.js: Copied from LayoutTests/svg/custom/resources/svg-fonts-in-text-controls.js.
  • svg/custom/script-tests/svg-modify-currentTranslate.js: Copied from LayoutTests/svg/custom/resources/svg-modify-currentTranslate.js.
  • svg/custom/script-tests/svg-xml-dom-sync.js: Copied from LayoutTests/svg/custom/resources/svg-xml-dom-sync.js.
  • svg/custom/script-tests/tearoffs-with-tearoffs.js: Copied from LayoutTests/svg/custom/resources/tearoffs-with-tearoffs.js.
  • svg/custom/selectSubString.html:
  • svg/custom/svg-fonts-in-text-controls.html:
  • svg/custom/svg-modify-currentTranslate.html:
  • svg/custom/svg-xml-dom-sync.html:
  • svg/custom/tearoffs-with-tearoffs.html:
  • svg/dom/SVGStyleElement/resources/TEMPLATE.html: Removed.
  • svg/dom/SVGStyleElement/resources/style-langspace.js: Removed.
  • svg/dom/SVGStyleElement/script-tests: Added.
  • svg/dom/SVGStyleElement/script-tests/TEMPLATE.html: Copied from LayoutTests/svg/dom/SVGStyleElement/resources/TEMPLATE.html.
  • svg/dom/SVGStyleElement/script-tests/style-langspace.js: Copied from LayoutTests/svg/dom/SVGStyleElement/resources/style-langspace.js.
  • svg/dom/SVGStyleElement/style-langspace.html:
  • svg/dom/path-parser.html:
  • svg/dom/path-segments.html:
  • svg/dom/resources/TEMPLATE.html: Removed.
  • svg/dom/resources/path-parser.js: Removed.
  • svg/dom/resources/path-segments.js: Removed.
  • svg/dom/resources/style-reflect.js: Removed.
  • svg/dom/resources/text-rotate-live.js: Removed.
  • svg/dom/script-tests: Added.
  • svg/dom/script-tests/TEMPLATE.html: Copied from LayoutTests/svg/dom/resources/TEMPLATE.html.
  • svg/dom/script-tests/path-parser.js: Copied from LayoutTests/svg/dom/resources/path-parser.js.
  • svg/dom/script-tests/path-segments.js: Copied from LayoutTests/svg/dom/resources/path-segments.js.
  • svg/dom/script-tests/style-reflect.js: Copied from LayoutTests/svg/dom/resources/style-reflect.js.
  • svg/dom/script-tests/text-rotate-live.js: Copied from LayoutTests/svg/dom/resources/text-rotate-live.js.
  • svg/dom/style-reflect.html:
  • svg/dom/text-rotate-live.html:
  • svg/dynamic-updates/SVGAElement-dom-href-attr.html:
  • svg/dynamic-updates/SVGAElement-dom-target-attr.html:
  • svg/dynamic-updates/SVGAElement-svgdom-href-prop.html:
  • svg/dynamic-updates/SVGAElement-svgdom-target-prop.html:
  • svg/dynamic-updates/SVGCircleElement-dom-cx-attr.html:
  • svg/dynamic-updates/SVGCircleElement-dom-cy-attr.html:
  • svg/dynamic-updates/SVGCircleElement-dom-r-attr.html:
  • svg/dynamic-updates/SVGCircleElement-svgdom-cx-prop.html:
  • svg/dynamic-updates/SVGCircleElement-svgdom-cy-prop.html:
  • svg/dynamic-updates/SVGCircleElement-svgdom-r-prop.html:
  • svg/dynamic-updates/SVGClipPathElement-dom-clipPathUnits-attr.html:
  • svg/dynamic-updates/SVGClipPathElement-svgdom-clipPathUnits-prop.html:
  • svg/dynamic-updates/SVGCursorElement-dom-x-attr.html:
  • svg/dynamic-updates/SVGCursorElement-dom-y-attr.html:
  • svg/dynamic-updates/SVGCursorElement-svgdom-x-prop.html:
  • svg/dynamic-updates/SVGCursorElement-svgdom-y-prop.html:
  • svg/dynamic-updates/SVGEllipseElement-dom-cx-attr.html:
  • svg/dynamic-updates/SVGEllipseElement-dom-cy-attr.html:
  • svg/dynamic-updates/SVGEllipseElement-dom-rx-attr.html:
  • svg/dynamic-updates/SVGEllipseElement-dom-ry-attr.html:
  • svg/dynamic-updates/SVGEllipseElement-svgdom-cx-prop.html:
  • svg/dynamic-updates/SVGEllipseElement-svgdom-cy-prop.html:
  • svg/dynamic-updates/SVGEllipseElement-svgdom-rx-prop.html:
  • svg/dynamic-updates/SVGEllipseElement-svgdom-ry-prop.html:
  • svg/dynamic-updates/SVGForeignObjectElement-dom-height-attr.html:
  • svg/dynamic-updates/SVGForeignObjectElement-dom-width-attr.html:
  • svg/dynamic-updates/SVGForeignObjectElement-dom-x-attr.html:
  • svg/dynamic-updates/SVGForeignObjectElement-dom-y-attr.html:
  • svg/dynamic-updates/SVGForeignObjectElement-svgdom-height-prop.html:
  • svg/dynamic-updates/SVGForeignObjectElement-svgdom-width-prop.html:
  • svg/dynamic-updates/SVGForeignObjectElement-svgdom-x-prop.html:
  • svg/dynamic-updates/SVGForeignObjectElement-svgdom-y-prop.html:
  • svg/dynamic-updates/SVGImageElement-dom-height-attr.html:
  • svg/dynamic-updates/SVGImageElement-dom-preserveAspectRatio-attr.html:
  • svg/dynamic-updates/SVGImageElement-dom-width-attr.html:
  • svg/dynamic-updates/SVGImageElement-dom-x-attr.html:
  • svg/dynamic-updates/SVGImageElement-dom-y-attr.html:
  • svg/dynamic-updates/SVGImageElement-svgdom-height-prop.html:
  • svg/dynamic-updates/SVGImageElement-svgdom-preserveAspectRatio-prop.html:
  • svg/dynamic-updates/SVGImageElement-svgdom-width-prop.html:
  • svg/dynamic-updates/SVGImageElement-svgdom-x-prop.html:
  • svg/dynamic-updates/SVGImageElement-svgdom-y-prop.html:
  • svg/dynamic-updates/SVGLineElement-dom-x1-attr.html:
  • svg/dynamic-updates/SVGLineElement-dom-x2-attr.html:
  • svg/dynamic-updates/SVGLineElement-dom-y1-attr.html:
  • svg/dynamic-updates/SVGLineElement-dom-y2-attr.html:
  • svg/dynamic-updates/SVGLineElement-svgdom-x1-prop.html:
  • svg/dynamic-updates/SVGLineElement-svgdom-x2-prop.html:
  • svg/dynamic-updates/SVGLineElement-svgdom-y1-prop.html:
  • svg/dynamic-updates/SVGLineElement-svgdom-y2-prop.html:
  • svg/dynamic-updates/SVGLinearGradientElement-dom-gradientTransform-attr.html:
  • svg/dynamic-updates/SVGLinearGradientElement-dom-gradientUnits-attr.html:
  • svg/dynamic-updates/SVGLinearGradientElement-dom-x1-attr.html:
  • svg/dynamic-updates/SVGLinearGradientElement-dom-x2-attr.html:
  • svg/dynamic-updates/SVGLinearGradientElement-dom-y1-attr.html:
  • svg/dynamic-updates/SVGLinearGradientElement-dom-y2-attr.html:
  • svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientTransform-prop.html:
  • svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientUnits-prop.html:
  • svg/dynamic-updates/SVGLinearGradientElement-svgdom-x1-prop.html:
  • svg/dynamic-updates/SVGLinearGradientElement-svgdom-x2-prop.html:
  • svg/dynamic-updates/SVGLinearGradientElement-svgdom-y1-prop.html:
  • svg/dynamic-updates/SVGLinearGradientElement-svgdom-y2-prop.html:
  • svg/dynamic-updates/SVGMarkerElement-dom-markerHeight-attr.html:
  • svg/dynamic-updates/SVGMarkerElement-dom-markerUnits-attr.html:
  • svg/dynamic-updates/SVGMarkerElement-dom-markerWidth-attr.html:
  • svg/dynamic-updates/SVGMarkerElement-dom-orient-attr.html:
  • svg/dynamic-updates/SVGMarkerElement-dom-refX-attr.html:
  • svg/dynamic-updates/SVGMarkerElement-dom-refY-attr.html:
  • svg/dynamic-updates/SVGMarkerElement-svgdom-markerHeight-prop.html:
  • svg/dynamic-updates/SVGMarkerElement-svgdom-markerUnits-prop.html:
  • svg/dynamic-updates/SVGMarkerElement-svgdom-markerWidth-prop.html:
  • svg/dynamic-updates/SVGMarkerElement-svgdom-orientAngle-prop.html:
  • svg/dynamic-updates/SVGMarkerElement-svgdom-orientType-prop.html:
  • svg/dynamic-updates/SVGMarkerElement-svgdom-refX-prop.html:
  • svg/dynamic-updates/SVGMarkerElement-svgdom-refY-prop.html:
  • svg/dynamic-updates/SVGMarkerElement-svgdom-setOrientToAngle-call.html:
  • svg/dynamic-updates/SVGMarkerElement-svgdom-setOrientToAuto-call.html:
  • svg/dynamic-updates/SVGMaskElement-dom-height-attr.html:
  • svg/dynamic-updates/SVGMaskElement-dom-maskContentUnits-attr.html:
  • svg/dynamic-updates/SVGMaskElement-dom-maskUnits-attr.html:
  • svg/dynamic-updates/SVGMaskElement-dom-width-attr.html:
  • svg/dynamic-updates/SVGMaskElement-dom-x-attr.html:
  • svg/dynamic-updates/SVGMaskElement-dom-y-attr.html:
  • svg/dynamic-updates/SVGMaskElement-svgdom-height-prop.html:
  • svg/dynamic-updates/SVGMaskElement-svgdom-maskContentUnits-prop.html:
  • svg/dynamic-updates/SVGMaskElement-svgdom-maskUnits-prop.html:
  • svg/dynamic-updates/SVGMaskElement-svgdom-width-prop.html:
  • svg/dynamic-updates/SVGMaskElement-svgdom-x-prop.html:
  • svg/dynamic-updates/SVGMaskElement-svgdom-y-prop.html:
  • svg/dynamic-updates/SVGPatternElement-dom-height-attr.html:
  • svg/dynamic-updates/SVGPatternElement-dom-patternContentUnits-attr.html:
  • svg/dynamic-updates/SVGPatternElement-dom-patternTransform-attr.html:
  • svg/dynamic-updates/SVGPatternElement-dom-patternUnits-attr.html:
  • svg/dynamic-updates/SVGPatternElement-dom-width-attr.html:
  • svg/dynamic-updates/SVGPatternElement-dom-x-attr.html:
  • svg/dynamic-updates/SVGPatternElement-dom-y-attr.html:
  • svg/dynamic-updates/SVGPatternElement-svgdom-height-prop.html:
  • svg/dynamic-updates/SVGPatternElement-svgdom-patternContentUnits-prop.html:
  • svg/dynamic-updates/SVGPatternElement-svgdom-patternTransform-prop.html:
  • svg/dynamic-updates/SVGPatternElement-svgdom-patternUnits-prop.html:
  • svg/dynamic-updates/SVGPatternElement-svgdom-width-prop.html:
  • svg/dynamic-updates/SVGPatternElement-svgdom-x-prop.html:
  • svg/dynamic-updates/SVGPatternElement-svgdom-y-prop.html:
  • svg/dynamic-updates/SVGRadialGradientElement-dom-cx-attr.html:
  • svg/dynamic-updates/SVGRadialGradientElement-dom-cy-attr.html:
  • svg/dynamic-updates/SVGRadialGradientElement-dom-fx-attr.html:
  • svg/dynamic-updates/SVGRadialGradientElement-dom-fy-attr.html:
  • svg/dynamic-updates/SVGRadialGradientElement-dom-gradientTransform-attr.html:
  • svg/dynamic-updates/SVGRadialGradientElement-dom-gradientUnits-attr.html:
  • svg/dynamic-updates/SVGRadialGradientElement-dom-r-attr.html:
  • svg/dynamic-updates/SVGRadialGradientElement-svgdom-cx-prop.html:
  • svg/dynamic-updates/SVGRadialGradientElement-svgdom-cy-prop.html:
  • svg/dynamic-updates/SVGRadialGradientElement-svgdom-fx-prop.html:
  • svg/dynamic-updates/SVGRadialGradientElement-svgdom-fy-prop.html:
  • svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientTransform-prop.html:
  • svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientUnits-prop.html:
  • svg/dynamic-updates/SVGRadialGradientElement-svgdom-r-prop.html:
  • svg/dynamic-updates/SVGRectElement-dom-height-attr.html:
  • svg/dynamic-updates/SVGRectElement-dom-width-attr.html:
  • svg/dynamic-updates/SVGRectElement-dom-x-attr.html:
  • svg/dynamic-updates/SVGRectElement-dom-y-attr.html:
  • svg/dynamic-updates/SVGRectElement-svgdom-height-prop.html:
  • svg/dynamic-updates/SVGRectElement-svgdom-width-prop.html:
  • svg/dynamic-updates/SVGRectElement-svgdom-x-prop.html:
  • svg/dynamic-updates/SVGRectElement-svgdom-y-prop.html:
  • svg/dynamic-updates/resources/SVGAElement-dom-href-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGAElement-dom-target-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGAElement-svgdom-href-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGAElement-svgdom-target-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGCircleElement-dom-cx-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGCircleElement-dom-cy-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGCircleElement-dom-r-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGCircleElement-svgdom-cx-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGCircleElement-svgdom-cy-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGCircleElement-svgdom-r-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGClipPathElement-dom-clipPathUnits-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGClipPathElement-svgdom-clipPathUnits-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGCursorElement-dom-x-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGCursorElement-dom-y-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGCursorElement-svgdom-x-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGCursorElement-svgdom-y-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGEllipseElement-dom-cx-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGEllipseElement-dom-cy-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGEllipseElement-dom-rx-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGEllipseElement-dom-ry-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGEllipseElement-svgdom-cx-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGEllipseElement-svgdom-cy-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGEllipseElement-svgdom-rx-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGEllipseElement-svgdom-ry-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGForeignObjectElement-dom-height-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGForeignObjectElement-dom-width-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGForeignObjectElement-dom-x-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGForeignObjectElement-dom-y-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGForeignObjectElement-svgdom-height-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGForeignObjectElement-svgdom-width-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGForeignObjectElement-svgdom-x-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGForeignObjectElement-svgdom-y-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGImageElement-dom-height-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGImageElement-dom-preserveAspectRatio-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGImageElement-dom-width-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGImageElement-dom-x-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGImageElement-dom-y-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGImageElement-svgdom-height-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGImageElement-svgdom-preserveAspectRatio-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGImageElement-svgdom-width-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGImageElement-svgdom-x-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGImageElement-svgdom-y-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGLineElement-dom-x1-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGLineElement-dom-x2-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGLineElement-dom-y1-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGLineElement-dom-y2-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGLineElement-svgdom-x1-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGLineElement-svgdom-x2-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGLineElement-svgdom-y1-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGLineElement-svgdom-y2-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGLinearGradientElement-dom-gradientTransform-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGLinearGradientElement-dom-gradientUnits-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGLinearGradientElement-dom-x1-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGLinearGradientElement-dom-x2-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGLinearGradientElement-dom-y1-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGLinearGradientElement-dom-y2-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGLinearGradientElement-svgdom-gradientTransform-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGLinearGradientElement-svgdom-gradientUnits-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGLinearGradientElement-svgdom-x1-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGLinearGradientElement-svgdom-x2-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGLinearGradientElement-svgdom-y1-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGLinearGradientElement-svgdom-y2-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGMarkerElement-dom-markerHeight-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGMarkerElement-dom-markerUnits-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGMarkerElement-dom-markerWidth-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGMarkerElement-dom-orient-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGMarkerElement-dom-refX-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGMarkerElement-dom-refY-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGMarkerElement-svgdom-markerHeight-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGMarkerElement-svgdom-markerUnits-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGMarkerElement-svgdom-markerWidth-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGMarkerElement-svgdom-orientAngle-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGMarkerElement-svgdom-orientType-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGMarkerElement-svgdom-refX-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGMarkerElement-svgdom-refY-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGMarkerElement-svgdom-setOrientToAngle-call.js: Removed.
  • svg/dynamic-updates/resources/SVGMarkerElement-svgdom-setOrientToAuto-call.js: Removed.
  • svg/dynamic-updates/resources/SVGMaskElement-dom-height-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGMaskElement-dom-maskContentUnits-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGMaskElement-dom-maskUnits-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGMaskElement-dom-width-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGMaskElement-dom-x-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGMaskElement-dom-y-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGMaskElement-svgdom-height-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGMaskElement-svgdom-maskContentUnits-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGMaskElement-svgdom-maskUnits-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGMaskElement-svgdom-width-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGMaskElement-svgdom-x-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGMaskElement-svgdom-y-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGPatternElement-dom-height-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGPatternElement-dom-patternContentUnits-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGPatternElement-dom-patternTransform-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGPatternElement-dom-patternUnits-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGPatternElement-dom-width-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGPatternElement-dom-x-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGPatternElement-dom-y-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGPatternElement-svgdom-height-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGPatternElement-svgdom-patternContentUnits-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGPatternElement-svgdom-patternTransform-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGPatternElement-svgdom-patternUnits-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGPatternElement-svgdom-width-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGPatternElement-svgdom-x-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGPatternElement-svgdom-y-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGRadialGradientElement-dom-cx-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGRadialGradientElement-dom-cy-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGRadialGradientElement-dom-fx-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGRadialGradientElement-dom-fy-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGRadialGradientElement-dom-gradientTransform-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGRadialGradientElement-dom-gradientUnits-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGRadialGradientElement-dom-r-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGRadialGradientElement-svgdom-cx-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGRadialGradientElement-svgdom-cy-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGRadialGradientElement-svgdom-fx-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGRadialGradientElement-svgdom-fy-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGRadialGradientElement-svgdom-gradientTransform-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGRadialGradientElement-svgdom-gradientUnits-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGRadialGradientElement-svgdom-r-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGRectElement-dom-height-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGRectElement-dom-width-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGRectElement-dom-x-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGRectElement-dom-y-attr.js: Removed.
  • svg/dynamic-updates/resources/SVGRectElement-svgdom-height-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGRectElement-svgdom-width-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGRectElement-svgdom-x-prop.js: Removed.
  • svg/dynamic-updates/resources/SVGRectElement-svgdom-y-prop.js: Removed.
  • svg/dynamic-updates/resources/TEMPLATE.html: Removed.
  • svg/dynamic-updates/script-tests: Added.
  • svg/dynamic-updates/script-tests/SVGAElement-dom-href-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGAElement-dom-href-attr.js.
  • svg/dynamic-updates/script-tests/SVGAElement-dom-target-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGAElement-dom-target-attr.js.
  • svg/dynamic-updates/script-tests/SVGAElement-svgdom-href-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGAElement-svgdom-href-prop.js.
  • svg/dynamic-updates/script-tests/SVGAElement-svgdom-target-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGAElement-svgdom-target-prop.js.
  • svg/dynamic-updates/script-tests/SVGCircleElement-dom-cx-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGCircleElement-dom-cx-attr.js.
  • svg/dynamic-updates/script-tests/SVGCircleElement-dom-cy-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGCircleElement-dom-cy-attr.js.
  • svg/dynamic-updates/script-tests/SVGCircleElement-dom-r-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGCircleElement-dom-r-attr.js.
  • svg/dynamic-updates/script-tests/SVGCircleElement-svgdom-cx-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGCircleElement-svgdom-cx-prop.js.
  • svg/dynamic-updates/script-tests/SVGCircleElement-svgdom-cy-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGCircleElement-svgdom-cy-prop.js.
  • svg/dynamic-updates/script-tests/SVGCircleElement-svgdom-r-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGCircleElement-svgdom-r-prop.js.
  • svg/dynamic-updates/script-tests/SVGClipPathElement-dom-clipPathUnits-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGClipPathElement-dom-clipPathUnits-attr.js.
  • svg/dynamic-updates/script-tests/SVGClipPathElement-svgdom-clipPathUnits-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGClipPathElement-svgdom-clipPathUnits-prop.js.
  • svg/dynamic-updates/script-tests/SVGCursorElement-dom-x-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGCursorElement-dom-x-attr.js.
  • svg/dynamic-updates/script-tests/SVGCursorElement-dom-y-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGCursorElement-dom-y-attr.js.
  • svg/dynamic-updates/script-tests/SVGCursorElement-svgdom-x-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGCursorElement-svgdom-x-prop.js.
  • svg/dynamic-updates/script-tests/SVGCursorElement-svgdom-y-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGCursorElement-svgdom-y-prop.js.
  • svg/dynamic-updates/script-tests/SVGEllipseElement-dom-cx-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGEllipseElement-dom-cx-attr.js.
  • svg/dynamic-updates/script-tests/SVGEllipseElement-dom-cy-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGEllipseElement-dom-cy-attr.js.
  • svg/dynamic-updates/script-tests/SVGEllipseElement-dom-rx-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGEllipseElement-dom-rx-attr.js.
  • svg/dynamic-updates/script-tests/SVGEllipseElement-dom-ry-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGEllipseElement-dom-ry-attr.js.
  • svg/dynamic-updates/script-tests/SVGEllipseElement-svgdom-cx-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGEllipseElement-svgdom-cx-prop.js.
  • svg/dynamic-updates/script-tests/SVGEllipseElement-svgdom-cy-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGEllipseElement-svgdom-cy-prop.js.
  • svg/dynamic-updates/script-tests/SVGEllipseElement-svgdom-rx-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGEllipseElement-svgdom-rx-prop.js.
  • svg/dynamic-updates/script-tests/SVGEllipseElement-svgdom-ry-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGEllipseElement-svgdom-ry-prop.js.
  • svg/dynamic-updates/script-tests/SVGForeignObjectElement-dom-height-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGForeignObjectElement-dom-height-attr.js.
  • svg/dynamic-updates/script-tests/SVGForeignObjectElement-dom-width-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGForeignObjectElement-dom-width-attr.js.
  • svg/dynamic-updates/script-tests/SVGForeignObjectElement-dom-x-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGForeignObjectElement-dom-x-attr.js.
  • svg/dynamic-updates/script-tests/SVGForeignObjectElement-dom-y-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGForeignObjectElement-dom-y-attr.js.
  • svg/dynamic-updates/script-tests/SVGForeignObjectElement-svgdom-height-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGForeignObjectElement-svgdom-height-prop.js.
  • svg/dynamic-updates/script-tests/SVGForeignObjectElement-svgdom-width-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGForeignObjectElement-svgdom-width-prop.js.
  • svg/dynamic-updates/script-tests/SVGForeignObjectElement-svgdom-x-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGForeignObjectElement-svgdom-x-prop.js.
  • svg/dynamic-updates/script-tests/SVGForeignObjectElement-svgdom-y-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGForeignObjectElement-svgdom-y-prop.js.
  • svg/dynamic-updates/script-tests/SVGImageElement-dom-height-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGImageElement-dom-height-attr.js.
  • svg/dynamic-updates/script-tests/SVGImageElement-dom-preserveAspectRatio-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGImageElement-dom-preserveAspectRatio-attr.js.
  • svg/dynamic-updates/script-tests/SVGImageElement-dom-width-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGImageElement-dom-width-attr.js.
  • svg/dynamic-updates/script-tests/SVGImageElement-dom-x-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGImageElement-dom-x-attr.js.
  • svg/dynamic-updates/script-tests/SVGImageElement-dom-y-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGImageElement-dom-y-attr.js.
  • svg/dynamic-updates/script-tests/SVGImageElement-svgdom-height-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGImageElement-svgdom-height-prop.js.
  • svg/dynamic-updates/script-tests/SVGImageElement-svgdom-preserveAspectRatio-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGImageElement-svgdom-preserveAspectRatio-prop.js.
  • svg/dynamic-updates/script-tests/SVGImageElement-svgdom-width-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGImageElement-svgdom-width-prop.js.
  • svg/dynamic-updates/script-tests/SVGImageElement-svgdom-x-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGImageElement-svgdom-x-prop.js.
  • svg/dynamic-updates/script-tests/SVGImageElement-svgdom-y-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGImageElement-svgdom-y-prop.js.
  • svg/dynamic-updates/script-tests/SVGLineElement-dom-x1-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGLineElement-dom-x1-attr.js.
  • svg/dynamic-updates/script-tests/SVGLineElement-dom-x2-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGLineElement-dom-x2-attr.js.
  • svg/dynamic-updates/script-tests/SVGLineElement-dom-y1-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGLineElement-dom-y1-attr.js.
  • svg/dynamic-updates/script-tests/SVGLineElement-dom-y2-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGLineElement-dom-y2-attr.js.
  • svg/dynamic-updates/script-tests/SVGLineElement-svgdom-x1-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGLineElement-svgdom-x1-prop.js.
  • svg/dynamic-updates/script-tests/SVGLineElement-svgdom-x2-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGLineElement-svgdom-x2-prop.js.
  • svg/dynamic-updates/script-tests/SVGLineElement-svgdom-y1-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGLineElement-svgdom-y1-prop.js.
  • svg/dynamic-updates/script-tests/SVGLineElement-svgdom-y2-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGLineElement-svgdom-y2-prop.js.
  • svg/dynamic-updates/script-tests/SVGLinearGradientElement-dom-gradientTransform-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGLinearGradientElement-dom-gradientTransform-attr.js.
  • svg/dynamic-updates/script-tests/SVGLinearGradientElement-dom-gradientUnits-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGLinearGradientElement-dom-gradientUnits-attr.js.
  • svg/dynamic-updates/script-tests/SVGLinearGradientElement-dom-x1-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGLinearGradientElement-dom-x1-attr.js.
  • svg/dynamic-updates/script-tests/SVGLinearGradientElement-dom-x2-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGLinearGradientElement-dom-x2-attr.js.
  • svg/dynamic-updates/script-tests/SVGLinearGradientElement-dom-y1-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGLinearGradientElement-dom-y1-attr.js.
  • svg/dynamic-updates/script-tests/SVGLinearGradientElement-dom-y2-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGLinearGradientElement-dom-y2-attr.js.
  • svg/dynamic-updates/script-tests/SVGLinearGradientElement-svgdom-gradientTransform-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGLinearGradientElement-svgdom-gradientTransform-prop.js.
  • svg/dynamic-updates/script-tests/SVGLinearGradientElement-svgdom-gradientUnits-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGLinearGradientElement-svgdom-gradientUnits-prop.js.
  • svg/dynamic-updates/script-tests/SVGLinearGradientElement-svgdom-x1-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGLinearGradientElement-svgdom-x1-prop.js.
  • svg/dynamic-updates/script-tests/SVGLinearGradientElement-svgdom-x2-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGLinearGradientElement-svgdom-x2-prop.js.
  • svg/dynamic-updates/script-tests/SVGLinearGradientElement-svgdom-y1-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGLinearGradientElement-svgdom-y1-prop.js.
  • svg/dynamic-updates/script-tests/SVGLinearGradientElement-svgdom-y2-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGLinearGradientElement-svgdom-y2-prop.js.
  • svg/dynamic-updates/script-tests/SVGMarkerElement-dom-markerHeight-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGMarkerElement-dom-markerHeight-attr.js.
  • svg/dynamic-updates/script-tests/SVGMarkerElement-dom-markerUnits-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGMarkerElement-dom-markerUnits-attr.js.
  • svg/dynamic-updates/script-tests/SVGMarkerElement-dom-markerWidth-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGMarkerElement-dom-markerWidth-attr.js.
  • svg/dynamic-updates/script-tests/SVGMarkerElement-dom-orient-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGMarkerElement-dom-orient-attr.js.
  • svg/dynamic-updates/script-tests/SVGMarkerElement-dom-refX-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGMarkerElement-dom-refX-attr.js.
  • svg/dynamic-updates/script-tests/SVGMarkerElement-dom-refY-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGMarkerElement-dom-refY-attr.js.
  • svg/dynamic-updates/script-tests/SVGMarkerElement-svgdom-markerHeight-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGMarkerElement-svgdom-markerHeight-prop.js.
  • svg/dynamic-updates/script-tests/SVGMarkerElement-svgdom-markerUnits-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGMarkerElement-svgdom-markerUnits-prop.js.
  • svg/dynamic-updates/script-tests/SVGMarkerElement-svgdom-markerWidth-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGMarkerElement-svgdom-markerWidth-prop.js.
  • svg/dynamic-updates/script-tests/SVGMarkerElement-svgdom-orientAngle-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGMarkerElement-svgdom-orientAngle-prop.js.
  • svg/dynamic-updates/script-tests/SVGMarkerElement-svgdom-orientType-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGMarkerElement-svgdom-orientType-prop.js.
  • svg/dynamic-updates/script-tests/SVGMarkerElement-svgdom-refX-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGMarkerElement-svgdom-refX-prop.js.
  • svg/dynamic-updates/script-tests/SVGMarkerElement-svgdom-refY-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGMarkerElement-svgdom-refY-prop.js.
  • svg/dynamic-updates/script-tests/SVGMarkerElement-svgdom-setOrientToAngle-call.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGMarkerElement-svgdom-setOrientToAngle-call.js.
  • svg/dynamic-updates/script-tests/SVGMarkerElement-svgdom-setOrientToAuto-call.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGMarkerElement-svgdom-setOrientToAuto-call.js.
  • svg/dynamic-updates/script-tests/SVGMaskElement-dom-height-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGMaskElement-dom-height-attr.js.
  • svg/dynamic-updates/script-tests/SVGMaskElement-dom-maskContentUnits-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGMaskElement-dom-maskContentUnits-attr.js.
  • svg/dynamic-updates/script-tests/SVGMaskElement-dom-maskUnits-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGMaskElement-dom-maskUnits-attr.js.
  • svg/dynamic-updates/script-tests/SVGMaskElement-dom-width-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGMaskElement-dom-width-attr.js.
  • svg/dynamic-updates/script-tests/SVGMaskElement-dom-x-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGMaskElement-dom-x-attr.js.
  • svg/dynamic-updates/script-tests/SVGMaskElement-dom-y-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGMaskElement-dom-y-attr.js.
  • svg/dynamic-updates/script-tests/SVGMaskElement-svgdom-height-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGMaskElement-svgdom-height-prop.js.
  • svg/dynamic-updates/script-tests/SVGMaskElement-svgdom-maskContentUnits-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGMaskElement-svgdom-maskContentUnits-prop.js.
  • svg/dynamic-updates/script-tests/SVGMaskElement-svgdom-maskUnits-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGMaskElement-svgdom-maskUnits-prop.js.
  • svg/dynamic-updates/script-tests/SVGMaskElement-svgdom-width-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGMaskElement-svgdom-width-prop.js.
  • svg/dynamic-updates/script-tests/SVGMaskElement-svgdom-x-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGMaskElement-svgdom-x-prop.js.
  • svg/dynamic-updates/script-tests/SVGMaskElement-svgdom-y-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGMaskElement-svgdom-y-prop.js.
  • svg/dynamic-updates/script-tests/SVGPatternElement-dom-height-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGPatternElement-dom-height-attr.js.
  • svg/dynamic-updates/script-tests/SVGPatternElement-dom-patternContentUnits-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGPatternElement-dom-patternContentUnits-attr.js.
  • svg/dynamic-updates/script-tests/SVGPatternElement-dom-patternTransform-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGPatternElement-dom-patternTransform-attr.js.
  • svg/dynamic-updates/script-tests/SVGPatternElement-dom-patternUnits-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGPatternElement-dom-patternUnits-attr.js.
  • svg/dynamic-updates/script-tests/SVGPatternElement-dom-width-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGPatternElement-dom-width-attr.js.
  • svg/dynamic-updates/script-tests/SVGPatternElement-dom-x-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGPatternElement-dom-x-attr.js.
  • svg/dynamic-updates/script-tests/SVGPatternElement-dom-y-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGPatternElement-dom-y-attr.js.
  • svg/dynamic-updates/script-tests/SVGPatternElement-svgdom-height-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGPatternElement-svgdom-height-prop.js.
  • svg/dynamic-updates/script-tests/SVGPatternElement-svgdom-patternContentUnits-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGPatternElement-svgdom-patternContentUnits-prop.js.
  • svg/dynamic-updates/script-tests/SVGPatternElement-svgdom-patternTransform-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGPatternElement-svgdom-patternTransform-prop.js.
  • svg/dynamic-updates/script-tests/SVGPatternElement-svgdom-patternUnits-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGPatternElement-svgdom-patternUnits-prop.js.
  • svg/dynamic-updates/script-tests/SVGPatternElement-svgdom-width-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGPatternElement-svgdom-width-prop.js.
  • svg/dynamic-updates/script-tests/SVGPatternElement-svgdom-x-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGPatternElement-svgdom-x-prop.js.
  • svg/dynamic-updates/script-tests/SVGPatternElement-svgdom-y-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGPatternElement-svgdom-y-prop.js.
  • svg/dynamic-updates/script-tests/SVGRadialGradientElement-dom-cx-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGRadialGradientElement-dom-cx-attr.js.
  • svg/dynamic-updates/script-tests/SVGRadialGradientElement-dom-cy-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGRadialGradientElement-dom-cy-attr.js.
  • svg/dynamic-updates/script-tests/SVGRadialGradientElement-dom-fx-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGRadialGradientElement-dom-fx-attr.js.
  • svg/dynamic-updates/script-tests/SVGRadialGradientElement-dom-fy-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGRadialGradientElement-dom-fy-attr.js.
  • svg/dynamic-updates/script-tests/SVGRadialGradientElement-dom-gradientTransform-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGRadialGradientElement-dom-gradientTransform-attr.js.
  • svg/dynamic-updates/script-tests/SVGRadialGradientElement-dom-gradientUnits-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGRadialGradientElement-dom-gradientUnits-attr.js.
  • svg/dynamic-updates/script-tests/SVGRadialGradientElement-dom-r-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGRadialGradientElement-dom-r-attr.js.
  • svg/dynamic-updates/script-tests/SVGRadialGradientElement-svgdom-cx-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGRadialGradientElement-svgdom-cx-prop.js.
  • svg/dynamic-updates/script-tests/SVGRadialGradientElement-svgdom-cy-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGRadialGradientElement-svgdom-cy-prop.js.
  • svg/dynamic-updates/script-tests/SVGRadialGradientElement-svgdom-fx-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGRadialGradientElement-svgdom-fx-prop.js.
  • svg/dynamic-updates/script-tests/SVGRadialGradientElement-svgdom-fy-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGRadialGradientElement-svgdom-fy-prop.js.
  • svg/dynamic-updates/script-tests/SVGRadialGradientElement-svgdom-gradientTransform-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGRadialGradientElement-svgdom-gradientTransform-prop.js.
  • svg/dynamic-updates/script-tests/SVGRadialGradientElement-svgdom-gradientUnits-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGRadialGradientElement-svgdom-gradientUnits-prop.js.
  • svg/dynamic-updates/script-tests/SVGRadialGradientElement-svgdom-r-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGRadialGradientElement-svgdom-r-prop.js.
  • svg/dynamic-updates/script-tests/SVGRectElement-dom-height-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGRectElement-dom-height-attr.js.
  • svg/dynamic-updates/script-tests/SVGRectElement-dom-width-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGRectElement-dom-width-attr.js.
  • svg/dynamic-updates/script-tests/SVGRectElement-dom-x-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGRectElement-dom-x-attr.js.
  • svg/dynamic-updates/script-tests/SVGRectElement-dom-y-attr.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGRectElement-dom-y-attr.js.
  • svg/dynamic-updates/script-tests/SVGRectElement-svgdom-height-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGRectElement-svgdom-height-prop.js.
  • svg/dynamic-updates/script-tests/SVGRectElement-svgdom-width-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGRectElement-svgdom-width-prop.js.
  • svg/dynamic-updates/script-tests/SVGRectElement-svgdom-x-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGRectElement-svgdom-x-prop.js.
  • svg/dynamic-updates/script-tests/SVGRectElement-svgdom-y-prop.js: Copied from LayoutTests/svg/dynamic-updates/resources/SVGRectElement-svgdom-y-prop.js.
  • svg/dynamic-updates/script-tests/TEMPLATE.html: Copied from LayoutTests/svg/dynamic-updates/resources/TEMPLATE.html.
2:35 AM Changeset in webkit [48553] by hamaji@chromium.org
  • 36 edits
    44 moves
    8 adds in trunk/LayoutTests

2009-09-19 Shinichiro Hamaji <hamaji@chromium.org>

Rubber-stamped by Eric Seidel.

js tests should move into jstests subdirectory instead of resources/
https://bugs.webkit.org/show_bug.cgi?id=25880

Migration for http, platform, plugins, traversal, and wml directories.

  • http/tests/cookies/double-quoted-value-with-semi-colon.html:
  • http/tests/cookies/multiple-cookies.html:
  • http/tests/cookies/resources/TEMPLATE.html: Removed.
  • http/tests/cookies/resources/double-quoted-value-with-semi-colon.js: Removed.
  • http/tests/cookies/resources/multiple-cookies.js: Removed.
  • http/tests/cookies/resources/simple-cookies-expired.js: Removed.
  • http/tests/cookies/resources/simple-cookies-max-age.js: Removed.
  • http/tests/cookies/script-tests: Added.
  • http/tests/cookies/script-tests/TEMPLATE.html: Copied from LayoutTests/http/tests/cookies/resources/TEMPLATE.html.
  • http/tests/cookies/script-tests/double-quoted-value-with-semi-colon.js: Copied from LayoutTests/http/tests/cookies/resources/double-quoted-value-with-semi-colon.js.
  • http/tests/cookies/script-tests/multiple-cookies.js: Copied from LayoutTests/http/tests/cookies/resources/multiple-cookies.js.
  • http/tests/cookies/script-tests/simple-cookies-expired.js: Copied from LayoutTests/http/tests/cookies/resources/simple-cookies-expired.js.
  • http/tests/cookies/script-tests/simple-cookies-max-age.js: Copied from LayoutTests/http/tests/cookies/resources/simple-cookies-max-age.js.
  • http/tests/cookies/simple-cookies-expired.html:
  • http/tests/cookies/simple-cookies-max-age.html:
  • http/tests/security/clipboard/clipboard-file-access.html:
  • http/tests/security/clipboard/resources/TEMPLATE.html: Removed.
  • http/tests/security/clipboard/resources/clipboard-file-access.js: Removed.
  • http/tests/security/clipboard/script-tests: Added.
  • http/tests/security/clipboard/script-tests/TEMPLATE.html: Copied from LayoutTests/http/tests/security/clipboard/resources/TEMPLATE.html.
  • http/tests/security/clipboard/script-tests/clipboard-file-access.js: Copied from LayoutTests/http/tests/security/clipboard/resources/clipboard-file-access.js.
  • http/tests/wml/access-target-domain-deny.html:
  • http/tests/wml/access-target-path-deny.html:
  • http/tests/wml/access-target.html:
  • http/tests/wml/go-task-get-method-accept-charset.html:
  • http/tests/wml/go-task-get-method.html:
  • http/tests/wml/go-task-post-method-accept-charset.html:
  • http/tests/wml/go-task-post-method.html:
  • http/tests/wml/post-data-to-server.html:
  • http/tests/wml/resources/TEMPLATE.html: Removed.
  • http/tests/wml/resources/access-target-domain-deny.js: Removed.
  • http/tests/wml/resources/access-target-path-deny.js: Removed.
  • http/tests/wml/resources/access-target.js: Removed.
  • http/tests/wml/resources/go-task-get-method-accept-charset.js: Removed.
  • http/tests/wml/resources/go-task-get-method.js: Removed.
  • http/tests/wml/resources/go-task-post-method-accept-charset.js: Removed.
  • http/tests/wml/resources/go-task-post-method.js: Removed.
  • http/tests/wml/resources/post-data-to-server.js: Removed.
  • http/tests/wml/script-tests: Added.
  • http/tests/wml/script-tests/TEMPLATE.html: Copied from LayoutTests/http/tests/wml/resources/TEMPLATE.html.
  • http/tests/wml/script-tests/access-target-domain-deny.js: Copied from LayoutTests/http/tests/wml/resources/access-target-domain-deny.js.
  • http/tests/wml/script-tests/access-target-path-deny.js: Copied from LayoutTests/http/tests/wml/resources/access-target-path-deny.js.
  • http/tests/wml/script-tests/access-target.js: Copied from LayoutTests/http/tests/wml/resources/access-target.js.
  • http/tests/wml/script-tests/go-task-get-method-accept-charset.js: Copied from LayoutTests/http/tests/wml/resources/go-task-get-method-accept-charset.js.
  • http/tests/wml/script-tests/go-task-get-method.js: Copied from LayoutTests/http/tests/wml/resources/go-task-get-method.js.
  • http/tests/wml/script-tests/go-task-post-method-accept-charset.js: Copied from LayoutTests/http/tests/wml/resources/go-task-post-method-accept-charset.js.
  • http/tests/wml/script-tests/go-task-post-method.js: Copied from LayoutTests/http/tests/wml/resources/go-task-post-method.js.
  • http/tests/wml/script-tests/post-data-to-server.js: Copied from LayoutTests/http/tests/wml/resources/post-data-to-server.js.
  • platform/gtk/editing/pasteboard/resources/TEMPLATE.html: Removed.
  • platform/gtk/editing/pasteboard/resources/middle-click-onpaste.js: Removed.
  • platform/gtk/editing/pasteboard/script-tests: Added.
  • platform/gtk/editing/pasteboard/script-tests/TEMPLATE.html: Copied from LayoutTests/platform/gtk/editing/pasteboard/resources/TEMPLATE.html.
  • platform/gtk/editing/pasteboard/script-tests/middle-click-onpaste.js: Copied from LayoutTests/platform/gtk/editing/pasteboard/resources/middle-click-onpaste.js.
  • platform/win/fast/events/context-click-events.html:
  • platform/win/fast/events/resources/TEMPLATE.html: Removed.
  • platform/win/fast/events/resources/context-click-events.js: Removed.
  • platform/win/fast/events/script-tests: Added.
  • platform/win/fast/events/script-tests/TEMPLATE.html: Copied from LayoutTests/platform/win/fast/events/resources/TEMPLATE.html.
  • platform/win/fast/events/script-tests/context-click-events.js: Copied from LayoutTests/platform/win/fast/events/resources/context-click-events.js.
  • plugins/netscape-identifier-conversion.html:
  • plugins/resources/TEMPLATE.html: Removed.
  • plugins/resources/netscape-identifier-conversion.js: Removed.
  • plugins/script-tests: Added.
  • plugins/script-tests/TEMPLATE.html: Copied from LayoutTests/plugins/resources/TEMPLATE.html.
  • plugins/script-tests/netscape-identifier-conversion.js: Copied from LayoutTests/plugins/resources/netscape-identifier-conversion.js.
  • traversal/acid3-test-2.html:
  • traversal/exception-forwarding.html:
  • traversal/resources/TEMPLATE.html: Removed.
  • traversal/resources/acid3-test-2.js: Removed.
  • traversal/resources/exception-forwarding.js: Removed.
  • traversal/script-tests: Added.
  • traversal/script-tests/TEMPLATE.html: Copied from LayoutTests/traversal/resources/TEMPLATE.html.
  • traversal/script-tests/acid3-test-2.js: Copied from LayoutTests/traversal/resources/acid3-test-2.js.
  • traversal/script-tests/exception-forwarding.js: Copied from LayoutTests/traversal/resources/exception-forwarding.js.
  • wml/access-target-deny.html:
  • wml/access-target.html:
  • wml/enter-card-with-events.html:
  • wml/enter-first-card-with-events.html:
  • wml/go-task-get-method-external-deck-with-href.html:
  • wml/go-task-get-method-external-deck.html:
  • wml/go-task-get-method-same-deck.html:
  • wml/input-format.html:
  • wml/newcontext-same-deck.html:
  • wml/onenterforward-event.html:
  • wml/onenterforward-inline-event.html:
  • wml/ontimer-event.html:
  • wml/ontimer-inline-event.html:
  • wml/option-element-onpick-recursion.html:
  • wml/option-element-onpick.html:
  • wml/resources/TEMPLATE.html: Removed.
  • wml/resources/access-target-deny.js: Removed.
  • wml/resources/access-target.js: Removed.
  • wml/resources/enter-card-with-events.js: Removed.
  • wml/resources/enter-first-card-with-events.js: Removed.
  • wml/resources/go-task-get-method-external-deck-with-href.js: Removed.
  • wml/resources/go-task-get-method-external-deck.js: Removed.
  • wml/resources/go-task-get-method-same-deck.js: Removed.
  • wml/resources/input-format.js: Removed.
  • wml/resources/newcontext-same-deck.js: Removed.
  • wml/resources/onenterforward-event.js: Removed.
  • wml/resources/onenterforward-inline-event.js: Removed.
  • wml/resources/ontimer-event.js: Removed.
  • wml/resources/ontimer-inline-event.js: Removed.
  • wml/resources/option-element-onpick-recursion.js: Removed.
  • wml/resources/option-element-onpick.js: Removed.
  • wml/resources/select-element-variables.js: Removed.
  • wml/resources/variable-reference-invalid-character.js: Removed.
  • wml/resources/variable-reference-valid.js: Removed.
  • wml/script-tests: Added.
  • wml/script-tests/TEMPLATE.html: Copied from LayoutTests/wml/resources/TEMPLATE.html.
  • wml/script-tests/access-target-deny.js: Copied from LayoutTests/wml/resources/access-target-deny.js.
  • wml/script-tests/access-target.js: Copied from LayoutTests/wml/resources/access-target.js.
  • wml/script-tests/enter-card-with-events.js: Copied from LayoutTests/wml/resources/enter-card-with-events.js.
  • wml/script-tests/enter-first-card-with-events.js: Copied from LayoutTests/wml/resources/enter-first-card-with-events.js.
  • wml/script-tests/go-task-get-method-external-deck-with-href.js: Copied from LayoutTests/wml/resources/go-task-get-method-external-deck-with-href.js.
  • wml/script-tests/go-task-get-method-external-deck.js: Copied from LayoutTests/wml/resources/go-task-get-method-external-deck.js.
  • wml/script-tests/go-task-get-method-same-deck.js: Copied from LayoutTests/wml/resources/go-task-get-method-same-deck.js.
  • wml/script-tests/input-format.js: Copied from LayoutTests/wml/resources/input-format.js.
  • wml/script-tests/newcontext-same-deck.js: Copied from LayoutTests/wml/resources/newcontext-same-deck.js.
  • wml/script-tests/onenterforward-event.js: Copied from LayoutTests/wml/resources/onenterforward-event.js.
  • wml/script-tests/onenterforward-inline-event.js: Copied from LayoutTests/wml/resources/onenterforward-inline-event.js.
  • wml/script-tests/ontimer-event.js: Copied from LayoutTests/wml/resources/ontimer-event.js.
  • wml/script-tests/ontimer-inline-event.js: Copied from LayoutTests/wml/resources/ontimer-inline-event.js.
  • wml/script-tests/option-element-onpick-recursion.js: Copied from LayoutTests/wml/resources/option-element-onpick-recursion.js.
  • wml/script-tests/option-element-onpick.js: Copied from LayoutTests/wml/resources/option-element-onpick.js.
  • wml/script-tests/select-element-variables.js: Copied from LayoutTests/wml/resources/select-element-variables.js.
  • wml/script-tests/variable-reference-invalid-character.js: Copied from LayoutTests/wml/resources/variable-reference-invalid-character.js.
  • wml/script-tests/variable-reference-valid.js: Copied from LayoutTests/wml/resources/variable-reference-valid.js.
  • wml/select-element-variables.html:
  • wml/variable-reference-invalid-character.html:
  • wml/variable-reference-valid.html:
1:49 AM Changeset in webkit [48552] by hamaji@chromium.org
  • 36 edits
    42 moves
    7 adds in trunk/LayoutTests

2009-09-19 Shinichiro Hamaji <hamaji@chromium.org>

Rubber-stamped by Eric Seidel.

js tests should move into jstests subdirectory instead of resources/
https://bugs.webkit.org/show_bug.cgi?id=25880

Migration for fast/* directories except fast js directory.

  • fast/events/blur-focus-window-should-blur-focus-element.html:
  • fast/events/create-document-crash-on-attach-event.html:
  • fast/events/event-function-toString.html:
  • fast/events/event-instanceof.html:
  • fast/events/event-listener-sharing.html:
  • fast/events/init-events.html:
  • fast/events/mouse-click-events.html:
  • fast/events/resources/TEMPLATE.html: Removed.
  • fast/events/resources/blur-focus-window-should-blur-focus-element.js: Removed.
  • fast/events/resources/create-document-crash-on-attach-event.js: Removed.
  • fast/events/resources/event-function-toString.js: Removed.
  • fast/events/resources/event-instanceof.js: Removed.
  • fast/events/resources/event-listener-sharing.js: Removed.
  • fast/events/resources/init-events.js: Removed.
  • fast/events/resources/mouse-click-events.js: Removed.
  • fast/events/resources/tab-is-focusable-assert.js: Removed.
  • fast/events/script-tests: Added.
  • fast/events/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/events/resources/TEMPLATE.html.
  • fast/events/script-tests/blur-focus-window-should-blur-focus-element.js: Copied from LayoutTests/fast/events/resources/blur-focus-window-should-blur-focus-element.js.
  • fast/events/script-tests/create-document-crash-on-attach-event.js: Copied from LayoutTests/fast/events/resources/create-document-crash-on-attach-event.js.
  • fast/events/script-tests/event-function-toString.js: Copied from LayoutTests/fast/events/resources/event-function-toString.js.
  • fast/events/script-tests/event-instanceof.js: Copied from LayoutTests/fast/events/resources/event-instanceof.js.
  • fast/events/script-tests/event-listener-sharing.js: Copied from LayoutTests/fast/events/resources/event-listener-sharing.js.
  • fast/events/script-tests/init-events.js: Copied from LayoutTests/fast/events/resources/init-events.js.
  • fast/events/script-tests/mouse-click-events.js: Copied from LayoutTests/fast/events/resources/mouse-click-events.js.
  • fast/events/script-tests/tab-is-focusable-assert.js: Copied from LayoutTests/fast/events/resources/tab-is-focusable-assert.js.
  • fast/events/tab-is-focusable-assert.html:
  • fast/forms/ValidityState-patternMismatch-unsupported.html:
  • fast/forms/ValidityState-typeMismatch-color.html:
  • fast/forms/ValidityState-typeMismatch-number.html:
  • fast/forms/ValidityState-typeMismatch-url.html:
  • fast/forms/formnovalidate-attribute.html:
  • fast/forms/input-maxlength-ime-completed.html:
  • fast/forms/input-maxlength-ime-preedit.html:
  • fast/forms/novalidate-attribute.html:
  • fast/forms/placeholder-dom-property.html:
  • fast/forms/resources/TEMPLATE.html: Removed.
  • fast/forms/resources/ValidityState-patternMismatch-unsupported.js: Removed.
  • fast/forms/resources/ValidityState-typeMismatch-color.js: Removed.
  • fast/forms/resources/ValidityState-typeMismatch-number.js: Removed.
  • fast/forms/resources/ValidityState-typeMismatch-url.js: Removed.
  • fast/forms/resources/formnovalidate-attribute.js: Removed.
  • fast/forms/resources/input-maxlength-ime-completed.js: Removed.
  • fast/forms/resources/input-maxlength-ime-preedit.js: Removed.
  • fast/forms/resources/novalidate-attribute.js: Removed.
  • fast/forms/resources/placeholder-dom-property.js: Removed.
  • fast/forms/resources/shadow-tree-exposure.js: Removed.
  • fast/forms/resources/text-control-intrinsic-widths.js: Removed.
  • fast/forms/resources/textarea-metrics.js: Removed.
  • fast/forms/resources/textarea-placeholder-dom-property.js: Removed.
  • fast/forms/resources/textarea-textlength.js: Removed.
  • fast/forms/script-tests: Added.
  • fast/forms/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/forms/resources/TEMPLATE.html.
  • fast/forms/script-tests/ValidityState-patternMismatch-unsupported.js: Copied from LayoutTests/fast/forms/resources/ValidityState-patternMismatch-unsupported.js.
  • fast/forms/script-tests/ValidityState-typeMismatch-color.js: Copied from LayoutTests/fast/forms/resources/ValidityState-typeMismatch-color.js.
  • fast/forms/script-tests/ValidityState-typeMismatch-number.js: Copied from LayoutTests/fast/forms/resources/ValidityState-typeMismatch-number.js.
  • fast/forms/script-tests/ValidityState-typeMismatch-url.js: Copied from LayoutTests/fast/forms/resources/ValidityState-typeMismatch-url.js.
  • fast/forms/script-tests/formnovalidate-attribute.js: Copied from LayoutTests/fast/forms/resources/formnovalidate-attribute.js.
  • fast/forms/script-tests/input-maxlength-ime-completed.js: Copied from LayoutTests/fast/forms/resources/input-maxlength-ime-completed.js.
  • fast/forms/script-tests/input-maxlength-ime-preedit.js: Copied from LayoutTests/fast/forms/resources/input-maxlength-ime-preedit.js.
  • fast/forms/script-tests/novalidate-attribute.js: Copied from LayoutTests/fast/forms/resources/novalidate-attribute.js.
  • fast/forms/script-tests/placeholder-dom-property.js: Copied from LayoutTests/fast/forms/resources/placeholder-dom-property.js.
  • fast/forms/script-tests/shadow-tree-exposure.js: Copied from LayoutTests/fast/forms/resources/shadow-tree-exposure.js.
  • fast/forms/script-tests/text-control-intrinsic-widths.js: Copied from LayoutTests/fast/forms/resources/text-control-intrinsic-widths.js.
  • fast/forms/script-tests/textarea-metrics.js: Copied from LayoutTests/fast/forms/resources/textarea-metrics.js.
  • fast/forms/script-tests/textarea-placeholder-dom-property.js: Copied from LayoutTests/fast/forms/resources/textarea-placeholder-dom-property.js.
  • fast/forms/script-tests/textarea-textlength.js: Copied from LayoutTests/fast/forms/resources/textarea-textlength.js.
  • fast/forms/shadow-tree-exposure.html:
  • fast/forms/text-control-intrinsic-widths.html:
  • fast/forms/textarea-metrics.html:
  • fast/forms/textarea-placeholder-dom-property.html:
  • fast/forms/textarea-textlength.html:
  • fast/images/border.html:
  • fast/images/resources/TEMPLATE.html: Removed.
  • fast/images/resources/border.js: Removed.
  • fast/images/script-tests: Added.
  • fast/images/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/images/resources/TEMPLATE.html.
  • fast/images/script-tests/border.js: Copied from LayoutTests/fast/images/resources/border.js.
  • fast/parser/block-nesting-cap.html:
  • fast/parser/pre-first-line-break.html:
  • fast/parser/resources/TEMPLATE.html: Removed.
  • fast/parser/resources/block-nesting-cap.js: Removed.
  • fast/parser/resources/pre-first-line-break.js: Removed.
  • fast/parser/script-tests: Added.
  • fast/parser/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/parser/resources/TEMPLATE.html.
  • fast/parser/script-tests/block-nesting-cap.js: Copied from LayoutTests/fast/parser/resources/block-nesting-cap.js.
  • fast/parser/script-tests/pre-first-line-break.js: Copied from LayoutTests/fast/parser/resources/pre-first-line-break.js.
  • fast/regex/alternative-length-miscalculation.html:
  • fast/regex/cross-frame-callable.html:
  • fast/regex/early-acid3-86.html:
  • fast/regex/malformed-escapes.html:
  • fast/regex/non-capturing-backtracking.html:
  • fast/regex/non-pattern-characters.html:
  • fast/regex/quantified-assertions.html:
  • fast/regex/resources/TEMPLATE.html: Removed.
  • fast/regex/resources/alternative-length-miscalculation.js: Removed.
  • fast/regex/resources/cross-frame-callable.js: Removed.
  • fast/regex/resources/early-acid3-86.js: Removed.
  • fast/regex/resources/malformed-escapes.js: Removed.
  • fast/regex/resources/non-capturing-backtracking.js: Removed.
  • fast/regex/resources/non-pattern-characters.js: Removed.
  • fast/regex/resources/quantified-assertions.js: Removed.
  • fast/regex/resources/slow.js: Removed.
  • fast/regex/script-tests: Added.
  • fast/regex/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/regex/resources/TEMPLATE.html.
  • fast/regex/script-tests/alternative-length-miscalculation.js: Copied from LayoutTests/fast/regex/resources/alternative-length-miscalculation.js.
  • fast/regex/script-tests/cross-frame-callable.js: Copied from LayoutTests/fast/regex/resources/cross-frame-callable.js.
  • fast/regex/script-tests/early-acid3-86.js: Copied from LayoutTests/fast/regex/resources/early-acid3-86.js.
  • fast/regex/script-tests/malformed-escapes.js: Copied from LayoutTests/fast/regex/resources/malformed-escapes.js.
  • fast/regex/script-tests/non-capturing-backtracking.js: Copied from LayoutTests/fast/regex/resources/non-capturing-backtracking.js.
  • fast/regex/script-tests/non-pattern-characters.js: Copied from LayoutTests/fast/regex/resources/non-pattern-characters.js.
  • fast/regex/script-tests/quantified-assertions.js: Copied from LayoutTests/fast/regex/resources/quantified-assertions.js.
  • fast/regex/script-tests/slow.js: Copied from LayoutTests/fast/regex/resources/slow.js.
  • fast/regex/slow.html:
  • fast/table/border-changes.html:
  • fast/table/resources/TEMPLATE.html: Removed.
  • fast/table/resources/border-changes.js: Removed.
  • fast/table/script-tests: Added.
  • fast/table/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/table/resources/TEMPLATE.html.
  • fast/table/script-tests/border-changes.js: Copied from LayoutTests/fast/table/resources/border-changes.js.
  • fast/text/find-backwards.html:
  • fast/text/resources/TEMPLATE.html: Removed.
  • fast/text/resources/find-backwards.js: Removed.
  • fast/text/script-tests: Added.
  • fast/text/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/text/resources/TEMPLATE.html.
  • fast/text/script-tests/find-backwards.js: Copied from LayoutTests/fast/text/resources/find-backwards.js.
1:41 AM Changeset in webkit [48551] by hamaji@chromium.org
  • 56 edits
    74 moves
    19 adds in trunk/LayoutTests

2009-09-19 Shinichiro Hamaji <hamaji@chromium.org>

Rubber-stamped by Eric Seidel.

js tests should move into jstests subdirectory instead of resources/
https://bugs.webkit.org/show_bug.cgi?id=25880

Migration for fast/dom directories.

  • fast/dom/CSSStyleDeclaration/css-properties-case-sensitive.html:
  • fast/dom/CSSStyleDeclaration/resources/TEMPLATE.html: Removed.
  • fast/dom/CSSStyleDeclaration/resources/css-properties-case-sensitive.js: Removed.
  • fast/dom/CSSStyleDeclaration/resources/transition-property-names.js: Removed.
  • fast/dom/CSSStyleDeclaration/script-tests: Added.
  • fast/dom/CSSStyleDeclaration/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/dom/CSSStyleDeclaration/resources/TEMPLATE.html.
  • fast/dom/CSSStyleDeclaration/script-tests/css-properties-case-sensitive.js: Copied from LayoutTests/fast/dom/CSSStyleDeclaration/resources/css-properties-case-sensitive.js.
  • fast/dom/CSSStyleDeclaration/script-tests/transition-property-names.js: Copied from LayoutTests/fast/dom/CSSStyleDeclaration/resources/transition-property-names.js.
  • fast/dom/CSSStyleDeclaration/transition-property-names.html:
  • fast/dom/DOMImplementation/createDocument-namespace-err.html:
  • fast/dom/DOMImplementation/createDocumentType-err.html:
  • fast/dom/DOMImplementation/resources/TEMPLATE.html: Removed.
  • fast/dom/DOMImplementation/resources/createDocument-namespace-err.js: Removed.
  • fast/dom/DOMImplementation/resources/createDocumentType-err.js: Removed.
  • fast/dom/DOMImplementation/script-tests: Added.
  • fast/dom/DOMImplementation/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/dom/DOMImplementation/resources/TEMPLATE.html.
  • fast/dom/DOMImplementation/script-tests/createDocument-namespace-err.js: Copied from LayoutTests/fast/dom/DOMImplementation/resources/createDocument-namespace-err.js.
  • fast/dom/DOMImplementation/script-tests/createDocumentType-err.js: Copied from LayoutTests/fast/dom/DOMImplementation/resources/createDocumentType-err.js.
  • fast/dom/Document/createAttributeNS-namespace-err.html:
  • fast/dom/Document/createElementNS-namespace-err.html:
  • fast/dom/Document/document-write-doctype.html:
  • fast/dom/Document/replaceChild-null-oldChild.html:
  • fast/dom/Document/resources/TEMPLATE.html: Removed.
  • fast/dom/Document/resources/createAttributeNS-namespace-err.js: Removed.
  • fast/dom/Document/resources/createElementNS-namespace-err.js: Removed.
  • fast/dom/Document/resources/document-write-doctype.js: Removed.
  • fast/dom/Document/resources/replaceChild-null-oldChild.js: Removed.
  • fast/dom/Document/script-tests: Added.
  • fast/dom/Document/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/dom/Document/resources/TEMPLATE.html.
  • fast/dom/Document/script-tests/createAttributeNS-namespace-err.js: Copied from LayoutTests/fast/dom/Document/resources/createAttributeNS-namespace-err.js.
  • fast/dom/Document/script-tests/createElementNS-namespace-err.js: Copied from LayoutTests/fast/dom/Document/resources/createElementNS-namespace-err.js.
  • fast/dom/Document/script-tests/document-write-doctype.js: Copied from LayoutTests/fast/dom/Document/resources/document-write-doctype.js.
  • fast/dom/Document/script-tests/replaceChild-null-oldChild.js: Copied from LayoutTests/fast/dom/Document/resources/replaceChild-null-oldChild.js.
  • fast/dom/Element/attr-param-typechecking.html:
  • fast/dom/Element/contains-method.html:
  • fast/dom/Element/dimension-properties-unrendered.html:
  • fast/dom/Element/element-traversal.html:
  • fast/dom/Element/getAttribute-check-case-sensitivity.html:
  • fast/dom/Element/resources/TEMPLATE.html: Removed.
  • fast/dom/Element/resources/attr-param-typechecking.js: Removed.
  • fast/dom/Element/resources/contains-method.js: Removed.
  • fast/dom/Element/resources/dimension-properties-unrendered.js: Removed.
  • fast/dom/Element/resources/element-traversal.js: Removed.
  • fast/dom/Element/resources/getAttribute-check-case-sensitivity.js: Removed.
  • fast/dom/Element/script-tests: Added.
  • fast/dom/Element/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/dom/Element/resources/TEMPLATE.html.
  • fast/dom/Element/script-tests/attr-param-typechecking.js: Copied from LayoutTests/fast/dom/Element/resources/attr-param-typechecking.js.
  • fast/dom/Element/script-tests/contains-method.js: Copied from LayoutTests/fast/dom/Element/resources/contains-method.js.
  • fast/dom/Element/script-tests/dimension-properties-unrendered.js: Copied from LayoutTests/fast/dom/Element/resources/dimension-properties-unrendered.js.
  • fast/dom/Element/script-tests/element-traversal.js: Copied from LayoutTests/fast/dom/Element/resources/element-traversal.js.
  • fast/dom/Element/script-tests/getAttribute-check-case-sensitivity.js: Copied from LayoutTests/fast/dom/Element/resources/getAttribute-check-case-sensitivity.js.
  • fast/dom/EntityReference/readonly-exceptions.html:
  • fast/dom/EntityReference/resources/TEMPLATE.html: Removed.
  • fast/dom/EntityReference/resources/readonly-exceptions.js: Removed.
  • fast/dom/EntityReference/script-tests: Added.
  • fast/dom/EntityReference/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/dom/EntityReference/resources/TEMPLATE.html.
  • fast/dom/EntityReference/script-tests/readonly-exceptions.js: Copied from LayoutTests/fast/dom/EntityReference/resources/readonly-exceptions.js.
  • fast/dom/HTMLFontElement/resources/TEMPLATE.html: Removed.
  • fast/dom/HTMLFontElement/resources/size-attribute.js: Removed.
  • fast/dom/HTMLFontElement/script-tests: Added.
  • fast/dom/HTMLFontElement/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/dom/HTMLFontElement/resources/TEMPLATE.html.
  • fast/dom/HTMLFontElement/script-tests/size-attribute.js: Copied from LayoutTests/fast/dom/HTMLFontElement/resources/size-attribute.js.
  • fast/dom/HTMLFontElement/size-attribute.html:
  • fast/dom/HTMLFormElement/elements-not-in-document.html:
  • fast/dom/HTMLFormElement/resources/TEMPLATE.html: Removed.
  • fast/dom/HTMLFormElement/resources/elements-not-in-document.js: Removed.
  • fast/dom/HTMLFormElement/script-tests: Added.
  • fast/dom/HTMLFormElement/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/dom/HTMLFormElement/resources/TEMPLATE.html.
  • fast/dom/HTMLFormElement/script-tests/elements-not-in-document.js: Copied from LayoutTests/fast/dom/HTMLFormElement/resources/elements-not-in-document.js.
  • fast/dom/HTMLInputElement/checked-pseudo-selector.html:
  • fast/dom/HTMLInputElement/resources/TEMPLATE.html: Removed.
  • fast/dom/HTMLInputElement/resources/checked-pseudo-selector.js: Removed.
  • fast/dom/HTMLInputElement/resources/size-attribute.js: Removed.
  • fast/dom/HTMLInputElement/script-tests: Added.
  • fast/dom/HTMLInputElement/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/dom/HTMLInputElement/resources/TEMPLATE.html.
  • fast/dom/HTMLInputElement/script-tests/checked-pseudo-selector.js: Copied from LayoutTests/fast/dom/HTMLInputElement/resources/checked-pseudo-selector.js.
  • fast/dom/HTMLInputElement/script-tests/size-attribute.js: Copied from LayoutTests/fast/dom/HTMLInputElement/resources/size-attribute.js.
  • fast/dom/HTMLInputElement/size-attribute.html:
  • fast/dom/HTMLSelectElement/named-options.html:
  • fast/dom/HTMLSelectElement/resources/TEMPLATE.html: Removed.
  • fast/dom/HTMLSelectElement/resources/named-options.js: Removed.
  • fast/dom/HTMLSelectElement/script-tests: Added.
  • fast/dom/HTMLSelectElement/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/dom/HTMLSelectElement/resources/TEMPLATE.html.
  • fast/dom/HTMLSelectElement/script-tests/named-options.js: Copied from LayoutTests/fast/dom/HTMLSelectElement/resources/named-options.js.
  • fast/dom/HTMLTableElement/cellpadding-attribute.html:
  • fast/dom/HTMLTableElement/early-acid3-65-excerpt.html:
  • fast/dom/HTMLTableElement/early-acid3-66-excerpt.html:
  • fast/dom/HTMLTableElement/resources/TEMPLATE.html: Removed.
  • fast/dom/HTMLTableElement/resources/cellpadding-attribute.js: Removed.
  • fast/dom/HTMLTableElement/resources/early-acid3-65-excerpt.js: Removed.
  • fast/dom/HTMLTableElement/resources/early-acid3-66-excerpt.js: Removed.
  • fast/dom/HTMLTableElement/resources/rows.js: Removed.
  • fast/dom/HTMLTableElement/resources/tBodies.js: Removed.
  • fast/dom/HTMLTableElement/rows.html:
  • fast/dom/HTMLTableElement/script-tests: Added.
  • fast/dom/HTMLTableElement/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/dom/HTMLTableElement/resources/TEMPLATE.html.
  • fast/dom/HTMLTableElement/script-tests/cellpadding-attribute.js: Copied from LayoutTests/fast/dom/HTMLTableElement/resources/cellpadding-attribute.js.
  • fast/dom/HTMLTableElement/script-tests/early-acid3-65-excerpt.js: Copied from LayoutTests/fast/dom/HTMLTableElement/resources/early-acid3-65-excerpt.js.
  • fast/dom/HTMLTableElement/script-tests/early-acid3-66-excerpt.js: Copied from LayoutTests/fast/dom/HTMLTableElement/resources/early-acid3-66-excerpt.js.
  • fast/dom/HTMLTableElement/script-tests/rows.js: Copied from LayoutTests/fast/dom/HTMLTableElement/resources/rows.js.
  • fast/dom/HTMLTableElement/script-tests/tBodies.js: Copied from LayoutTests/fast/dom/HTMLTableElement/resources/tBodies.js.
  • fast/dom/HTMLTableElement/tBodies.html:
  • fast/dom/HTMLTableRowElement/cells.html:
  • fast/dom/HTMLTableRowElement/resources/TEMPLATE.html: Removed.
  • fast/dom/HTMLTableRowElement/resources/cells.js: Removed.
  • fast/dom/HTMLTableRowElement/script-tests: Added.
  • fast/dom/HTMLTableRowElement/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/dom/HTMLTableRowElement/resources/TEMPLATE.html.
  • fast/dom/HTMLTableRowElement/script-tests/cells.js: Copied from LayoutTests/fast/dom/HTMLTableRowElement/resources/cells.js.
  • fast/dom/HTMLTableSectionElement/resources/TEMPLATE.html: Removed.
  • fast/dom/HTMLTableSectionElement/resources/rows.js: Removed.
  • fast/dom/HTMLTableSectionElement/rows.html:
  • fast/dom/HTMLTableSectionElement/script-tests: Added.
  • fast/dom/HTMLTableSectionElement/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/dom/HTMLTableSectionElement/resources/TEMPLATE.html.
  • fast/dom/HTMLTableSectionElement/script-tests/rows.js: Copied from LayoutTests/fast/dom/HTMLTableSectionElement/resources/rows.js.
  • fast/dom/Node/DOMNodeRemovedEvent.html:
  • fast/dom/Node/initial-values.html:
  • fast/dom/Node/resources/DOMNodeRemovedEvent.js: Removed.
  • fast/dom/Node/resources/TEMPLATE.html: Removed.
  • fast/dom/Node/resources/initial-values.js: Removed.
  • fast/dom/Node/script-tests: Added.
  • fast/dom/Node/script-tests/DOMNodeRemovedEvent.js: Copied from LayoutTests/fast/dom/Node/resources/DOMNodeRemovedEvent.js.
  • fast/dom/Node/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/dom/Node/resources/TEMPLATE.html.
  • fast/dom/Node/script-tests/initial-values.js: Copied from LayoutTests/fast/dom/Node/resources/initial-values.js.
  • fast/dom/Range/mutation.html:
  • fast/dom/Range/range-clone-empty.html:
  • fast/dom/Range/range-exceptions.html:
  • fast/dom/Range/range-insertNode-separate-endContainer.html:
  • fast/dom/Range/range-insertNode-splittext.html:
  • fast/dom/Range/range-modifycontents.html:
  • fast/dom/Range/resources/TEMPLATE.html: Removed.
  • fast/dom/Range/resources/mutation.js: Removed.
  • fast/dom/Range/resources/range-clone-empty.js: Removed.
  • fast/dom/Range/resources/range-exceptions.js: Removed.
  • fast/dom/Range/resources/range-insertNode-separate-endContainer.js: Removed.
  • fast/dom/Range/resources/range-insertNode-splittext.js: Removed.
  • fast/dom/Range/resources/range-modifycontents.js: Removed.
  • fast/dom/Range/script-tests: Added.
  • fast/dom/Range/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/dom/Range/resources/TEMPLATE.html.
  • fast/dom/Range/script-tests/mutation.js: Copied from LayoutTests/fast/dom/Range/resources/mutation.js.
  • fast/dom/Range/script-tests/range-clone-empty.js: Copied from LayoutTests/fast/dom/Range/resources/range-clone-empty.js.
  • fast/dom/Range/script-tests/range-exceptions.js: Copied from LayoutTests/fast/dom/Range/resources/range-exceptions.js.
  • fast/dom/Range/script-tests/range-insertNode-separate-endContainer.js: Copied from LayoutTests/fast/dom/Range/resources/range-insertNode-separate-endContainer.js.
  • fast/dom/Range/script-tests/range-insertNode-splittext.js: Copied from LayoutTests/fast/dom/Range/resources/range-insertNode-splittext.js.
  • fast/dom/Range/script-tests/range-modifycontents.js: Copied from LayoutTests/fast/dom/Range/resources/range-modifycontents.js.
  • fast/dom/Selection/getRangeAt.html:
  • fast/dom/Selection/resources/TEMPLATE.html: Removed.
  • fast/dom/Selection/resources/getRangeAt.js: Removed.
  • fast/dom/Selection/script-tests: Added.
  • fast/dom/Selection/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/dom/Selection/resources/TEMPLATE.html.
  • fast/dom/Selection/script-tests/getRangeAt.js: Copied from LayoutTests/fast/dom/Selection/resources/getRangeAt.js.
  • fast/dom/SelectorAPI/detached-element.html:
  • fast/dom/SelectorAPI/elementRoot.html:
  • fast/dom/SelectorAPI/id-fastpath.html:
  • fast/dom/SelectorAPI/resources/TEMPLATE.html: Removed.
  • fast/dom/SelectorAPI/resources/detached-element.js: Removed.
  • fast/dom/SelectorAPI/resources/elementRoot.js: Removed.
  • fast/dom/SelectorAPI/resources/id-fastpath.js: Removed.
  • fast/dom/SelectorAPI/resources/undefined-null-stringify.js: Removed.
  • fast/dom/SelectorAPI/resources/viewless-document.js: Removed.
  • fast/dom/SelectorAPI/script-tests: Added.
  • fast/dom/SelectorAPI/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/dom/SelectorAPI/resources/TEMPLATE.html.
  • fast/dom/SelectorAPI/script-tests/detached-element.js: Copied from LayoutTests/fast/dom/SelectorAPI/resources/detached-element.js.
  • fast/dom/SelectorAPI/script-tests/elementRoot.js: Copied from LayoutTests/fast/dom/SelectorAPI/resources/elementRoot.js.
  • fast/dom/SelectorAPI/script-tests/id-fastpath.js: Copied from LayoutTests/fast/dom/SelectorAPI/resources/id-fastpath.js.
  • fast/dom/SelectorAPI/script-tests/undefined-null-stringify.js: Copied from LayoutTests/fast/dom/SelectorAPI/resources/undefined-null-stringify.js.
  • fast/dom/SelectorAPI/script-tests/viewless-document.js: Copied from LayoutTests/fast/dom/SelectorAPI/resources/viewless-document.js.
  • fast/dom/SelectorAPI/undefined-null-stringify.html:
  • fast/dom/SelectorAPI/viewless-document.html:
  • fast/dom/Text/replaceWholeText.html:
  • fast/dom/Text/resources/TEMPLATE.html: Removed.
  • fast/dom/Text/resources/replaceWholeText.js: Removed.
  • fast/dom/Text/script-tests: Added.
  • fast/dom/Text/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/dom/Text/resources/TEMPLATE.html.
  • fast/dom/Text/script-tests/replaceWholeText.js: Copied from LayoutTests/fast/dom/Text/resources/replaceWholeText.js.
  • fast/dom/Window/HTMLBodyElement-window-eventListener-attributes.html:
  • fast/dom/Window/HTMLFrameSetElement-window-eventListener-attributes.html:
  • fast/dom/Window/dispatchEvent.html:
  • fast/dom/Window/resources/HTMLBodyElement-window-eventListener-attributes.js: Removed.
  • fast/dom/Window/resources/HTMLFrameSetElement-window-eventListener-attributes.js: Removed.
  • fast/dom/Window/resources/TEMPLATE.html: Removed.
  • fast/dom/Window/resources/dispatchEvent.js: Removed.
  • fast/dom/Window/resources/window-custom-prototype.js: Removed.
  • fast/dom/Window/script-tests: Added.
  • fast/dom/Window/script-tests/HTMLBodyElement-window-eventListener-attributes.js: Copied from LayoutTests/fast/dom/Window/resources/HTMLBodyElement-window-eventListener-attributes.js.
  • fast/dom/Window/script-tests/HTMLFrameSetElement-window-eventListener-attributes.js: Copied from LayoutTests/fast/dom/Window/resources/HTMLFrameSetElement-window-eventListener-attributes.js.
  • fast/dom/Window/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/dom/Window/resources/TEMPLATE.html.
  • fast/dom/Window/script-tests/dispatchEvent.js: Copied from LayoutTests/fast/dom/Window/resources/dispatchEvent.js.
  • fast/dom/Window/script-tests/window-custom-prototype.js: Copied from LayoutTests/fast/dom/Window/resources/window-custom-prototype.js.
  • fast/dom/Window/window-custom-prototype.html:
  • fast/dom/constructed-objects-prototypes.html:
  • fast/dom/constructors-cached.html:
  • fast/dom/css-RGBValue.html:
  • fast/dom/domListEnumeration.html:
  • fast/dom/event-attribute-availability.html:
  • fast/dom/javascript-url-exception-isolation.html:
  • fast/dom/location-new-window-no-crash.html:
  • fast/dom/non-numeric-values-numeric-parameters.html:
  • fast/dom/prototype-inheritance-2.html:
  • fast/dom/prototype-inheritance.html:
  • fast/dom/resources/TEMPLATE.html: Removed.
  • fast/dom/resources/constructed-objects-prototypes.js: Removed.
  • fast/dom/resources/constructors-cached.js: Removed.
  • fast/dom/resources/css-RGBValue.js: Removed.
  • fast/dom/resources/domListEnumeration.js: Removed.
  • fast/dom/resources/event-attribute-availability.js: Removed.
  • fast/dom/resources/javascript-url-exception-isolation.js: Removed.
  • fast/dom/resources/location-new-window-no-crash.js: Removed.
  • fast/dom/resources/non-numeric-values-numeric-parameters.js: Removed.
  • fast/dom/resources/prototype-inheritance-2.js: Removed.
  • fast/dom/resources/prototype-inheritance.js: Removed.
  • fast/dom/script-tests: Added.
  • fast/dom/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/dom/resources/TEMPLATE.html.
  • fast/dom/script-tests/constructed-objects-prototypes.js: Copied from LayoutTests/fast/dom/resources/constructed-objects-prototypes.js.
  • fast/dom/script-tests/constructors-cached.js: Copied from LayoutTests/fast/dom/resources/constructors-cached.js.
  • fast/dom/script-tests/css-RGBValue.js: Copied from LayoutTests/fast/dom/resources/css-RGBValue.js.
  • fast/dom/script-tests/domListEnumeration.js: Copied from LayoutTests/fast/dom/resources/domListEnumeration.js.
  • fast/dom/script-tests/event-attribute-availability.js: Copied from LayoutTests/fast/dom/resources/event-attribute-availability.js.
  • fast/dom/script-tests/javascript-url-exception-isolation.js: Copied from LayoutTests/fast/dom/resources/javascript-url-exception-isolation.js.
  • fast/dom/script-tests/location-new-window-no-crash.js: Copied from LayoutTests/fast/dom/resources/location-new-window-no-crash.js.
  • fast/dom/script-tests/non-numeric-values-numeric-parameters.js: Copied from LayoutTests/fast/dom/resources/non-numeric-values-numeric-parameters.js.
  • fast/dom/script-tests/prototype-inheritance-2.js: Copied from LayoutTests/fast/dom/resources/prototype-inheritance-2.js.
  • fast/dom/script-tests/prototype-inheritance.js: Copied from LayoutTests/fast/dom/resources/prototype-inheritance.js.
1:35 AM Changeset in webkit [48550] by hamaji@chromium.org
  • 19 edits
    20 moves
    2 adds in trunk/LayoutTests

2009-09-19 Shinichiro Hamaji <hamaji@chromium.org>

Rubber-stamped by Eric Seidel.

js tests should move into jstests subdirectory instead of resources/
https://bugs.webkit.org/show_bug.cgi?id=25880

Migration for fast/canvas and fast/css directories.

  • fast/canvas/canvas-copyPixels.html:
  • fast/canvas/canvas-gradient-addStop-error.html:
  • fast/canvas/canvas-gradient-without-path.html:
  • fast/canvas/canvas-modify-emptyPath.html:
  • fast/canvas/canvas-set-properties-with-non-invertible-ctm.html:
  • fast/canvas/canvas-setTransform.html:
  • fast/canvas/canvas-strokeRect.html:
  • fast/canvas/canvas-transparency-and-composite.html:
  • fast/canvas/gradient-addColorStop-with-invalid-color.html:
  • fast/canvas/gradient-with-clip.html:
  • fast/canvas/linearGradient-infinite-values.html:
  • fast/canvas/pattern-with-transform.html:
  • fast/canvas/radialGradient-infinite-values.html:
  • fast/canvas/resources/TEMPLATE.html: Removed.
  • fast/canvas/resources/canvas-copyPixels.js: Removed.
  • fast/canvas/resources/canvas-gradient-addStop-error.js: Removed.
  • fast/canvas/resources/canvas-gradient-without-path.js: Removed.
  • fast/canvas/resources/canvas-modify-emptyPath.js: Removed.
  • fast/canvas/resources/canvas-set-properties-with-non-invertible-ctm.js: Removed.
  • fast/canvas/resources/canvas-setTransform.js: Removed.
  • fast/canvas/resources/canvas-strokeRect.js: Removed.
  • fast/canvas/resources/canvas-transparency-and-composite.js: Removed.
  • fast/canvas/resources/gradient-addColorStop-with-invalid-color.js: Removed.
  • fast/canvas/resources/gradient-with-clip.js: Removed.
  • fast/canvas/resources/linearGradient-infinite-values.js: Removed.
  • fast/canvas/resources/pattern-with-transform.js: Removed.
  • fast/canvas/resources/radialGradient-infinite-values.js: Removed.
  • fast/canvas/resources/set-colors.js: Removed.
  • fast/canvas/resources/translate-text.js: Removed.
  • fast/canvas/script-tests: Added.
  • fast/canvas/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/canvas/resources/TEMPLATE.html.
  • fast/canvas/script-tests/canvas-copyPixels.js: Copied from LayoutTests/fast/canvas/resources/canvas-copyPixels.js.
  • fast/canvas/script-tests/canvas-gradient-addStop-error.js: Copied from LayoutTests/fast/canvas/resources/canvas-gradient-addStop-error.js.
  • fast/canvas/script-tests/canvas-gradient-without-path.js: Copied from LayoutTests/fast/canvas/resources/canvas-gradient-without-path.js.
  • fast/canvas/script-tests/canvas-modify-emptyPath.js: Copied from LayoutTests/fast/canvas/resources/canvas-modify-emptyPath.js.
  • fast/canvas/script-tests/canvas-set-properties-with-non-invertible-ctm.js: Copied from LayoutTests/fast/canvas/resources/canvas-set-properties-with-non-invertible-ctm.js.
  • fast/canvas/script-tests/canvas-setTransform.js: Copied from LayoutTests/fast/canvas/resources/canvas-setTransform.js.
  • fast/canvas/script-tests/canvas-strokeRect.js: Copied from LayoutTests/fast/canvas/resources/canvas-strokeRect.js.
  • fast/canvas/script-tests/canvas-transparency-and-composite.js: Copied from LayoutTests/fast/canvas/resources/canvas-transparency-and-composite.js.
  • fast/canvas/script-tests/gradient-addColorStop-with-invalid-color.js: Copied from LayoutTests/fast/canvas/resources/gradient-addColorStop-with-invalid-color.js.
  • fast/canvas/script-tests/gradient-with-clip.js: Copied from LayoutTests/fast/canvas/resources/gradient-with-clip.js.
  • fast/canvas/script-tests/linearGradient-infinite-values.js: Copied from LayoutTests/fast/canvas/resources/linearGradient-infinite-values.js.
  • fast/canvas/script-tests/pattern-with-transform.js: Copied from LayoutTests/fast/canvas/resources/pattern-with-transform.js.
  • fast/canvas/script-tests/radialGradient-infinite-values.js: Copied from LayoutTests/fast/canvas/resources/radialGradient-infinite-values.js.
  • fast/canvas/script-tests/set-colors.js: Copied from LayoutTests/fast/canvas/resources/set-colors.js.
  • fast/canvas/script-tests/translate-text.js: Copied from LayoutTests/fast/canvas/resources/translate-text.js.
  • fast/canvas/set-colors.html:
  • fast/canvas/translate-text.html:
  • fast/css/getComputedStyle/computed-style-font-family-monospace.html:
  • fast/css/getComputedStyle/font-family-fallback-reset.html:
  • fast/css/getComputedStyle/getComputedStyle-text-decoration.html:
  • fast/css/getComputedStyle/resources/TEMPLATE.html: Removed.
  • fast/css/getComputedStyle/resources/computed-style-font-family-monospace.js: Removed.
  • fast/css/getComputedStyle/resources/font-family-fallback-reset.js: Removed.
  • fast/css/getComputedStyle/resources/getComputedStyle-text-decoration.js: Removed.
  • fast/css/getComputedStyle/script-tests: Added.
  • fast/css/getComputedStyle/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/css/getComputedStyle/resources/TEMPLATE.html.
  • fast/css/getComputedStyle/script-tests/computed-style-font-family-monospace.js: Copied from LayoutTests/fast/css/getComputedStyle/resources/computed-style-font-family-monospace.js.
  • fast/css/getComputedStyle/script-tests/font-family-fallback-reset.js: Copied from LayoutTests/fast/css/getComputedStyle/resources/font-family-fallback-reset.js.
  • fast/css/getComputedStyle/script-tests/getComputedStyle-text-decoration.js: Copied from LayoutTests/fast/css/getComputedStyle/resources/getComputedStyle-text-decoration.js.
12:30 AM Changeset in webkit [48549] by hamaji@chromium.org
  • 10 edits
    14 moves
    5 adds in trunk/LayoutTests

2009-09-19 Shinichiro Hamaji <hamaji@chromium.org>

Rubber-stamped by Eric Seidel.

js tests should move into jstests subdirectory instead of resources/
https://bugs.webkit.org/show_bug.cgi?id=25880

Migration for editing directory.

  • editing/inserting/font-size-clears-from-typing-style.html:
  • editing/inserting/resources/TEMPLATE.html: Removed.
  • editing/inserting/resources/font-size-clears-from-typing-style.js: Removed.
  • editing/inserting/script-tests: Added.
  • editing/inserting/script-tests/TEMPLATE.html: Copied from LayoutTests/editing/inserting/resources/TEMPLATE.html.
  • editing/inserting/script-tests/font-size-clears-from-typing-style.js: Copied from LayoutTests/editing/inserting/resources/font-size-clears-from-typing-style.js.
  • editing/pasteboard/file-input-files-access.html:
  • editing/pasteboard/files-during-page-drags.html:
  • editing/pasteboard/get-data-text-plain-paste.html:
  • editing/pasteboard/resources/TEMPLATE.html: Removed.
  • editing/pasteboard/resources/file-input-files-access.js: Removed.
  • editing/pasteboard/resources/files-during-page-drags.js: Removed.
  • editing/pasteboard/resources/get-data-text-plain-paste.js: Removed.
  • editing/pasteboard/script-tests: Added.
  • editing/pasteboard/script-tests/TEMPLATE.html: Copied from LayoutTests/editing/pasteboard/resources/TEMPLATE.html.
  • editing/pasteboard/script-tests/file-input-files-access.js: Copied from LayoutTests/editing/pasteboard/resources/file-input-files-access.js.
  • editing/pasteboard/script-tests/files-during-page-drags.js: Copied from LayoutTests/editing/pasteboard/resources/files-during-page-drags.js.
  • editing/pasteboard/script-tests/get-data-text-plain-paste.js: Copied from LayoutTests/editing/pasteboard/resources/get-data-text-plain-paste.js.
  • editing/selection/click-in-margins-inside-editable-div.html:
  • editing/selection/click-in-padding-with-multiple-line-boxes.html:
  • editing/selection/click-outside-editable-div.html:
  • editing/selection/resources/TEMPLATE.html: Removed.
  • editing/selection/resources/click-in-margins-inside-editable-div.js: Removed.
  • editing/selection/resources/click-in-padding-with-multiple-line-boxes.js: Removed.
  • editing/selection/resources/click-outside-editable-div.js: Removed.
  • editing/selection/script-tests: Added.
  • editing/selection/script-tests/TEMPLATE.html: Copied from LayoutTests/editing/selection/resources/TEMPLATE.html.
  • editing/selection/script-tests/click-in-margins-inside-editable-div.js: Copied from LayoutTests/editing/selection/resources/click-in-margins-inside-editable-div.js.
  • editing/selection/script-tests/click-in-padding-with-multiple-line-boxes.js: Copied from LayoutTests/editing/selection/resources/click-in-padding-with-multiple-line-boxes.js.
  • editing/selection/script-tests/click-outside-editable-div.js: Copied from LayoutTests/editing/selection/resources/click-outside-editable-div.js.
  • editing/style/resources/TEMPLATE.html: Removed.
  • editing/style/resources/text-decoration-state.js: Removed.
  • editing/style/script-tests: Added.
  • editing/style/script-tests/TEMPLATE.html: Copied from LayoutTests/editing/style/resources/TEMPLATE.html.
  • editing/style/script-tests/text-decoration-state.js: Copied from LayoutTests/editing/style/resources/text-decoration-state.js.
  • editing/style/text-decoration-state.html:
  • editing/text-iterator/basic-iteration.html:
  • editing/text-iterator/resources/TEMPLATE.html: Removed.
  • editing/text-iterator/resources/basic-iteration.js: Removed.
  • editing/text-iterator/script-tests: Added.
  • editing/text-iterator/script-tests/TEMPLATE.html: Copied from LayoutTests/editing/text-iterator/resources/TEMPLATE.html.
  • editing/text-iterator/script-tests/basic-iteration.js: Copied from LayoutTests/editing/text-iterator/resources/basic-iteration.js.
12:22 AM Changeset in webkit [48548] by hamaji@chromium.org
  • 11 edits
    11 moves
    1 add in trunk/LayoutTests

2009-09-19 Shinichiro Hamaji <hamaji@chromium.org>

Rubber-stamped by Eric Seidel.

js tests should move into jstests subdirectory instead of resources/
https://bugs.webkit.org/show_bug.cgi?id=25880

Attempt to split the huge patch as I failed to commit it...

  • editing/execCommand/break-out-of-empty-list-item.html:
  • editing/execCommand/convert-style-elements-to-spans.html:
  • editing/execCommand/empty-span-removal.html:
  • editing/execCommand/enabling-and-selection-2.html:
  • editing/execCommand/enabling-and-selection.html:
  • editing/execCommand/inline-style-after-indentoutdent.html:
  • editing/execCommand/resources/TEMPLATE.html: Removed.
  • editing/execCommand/resources/break-out-of-empty-list-item.js: Removed.
  • editing/execCommand/resources/convert-style-elements-to-spans.js: Removed.
  • editing/execCommand/resources/empty-span-removal.js: Removed.
  • editing/execCommand/resources/enabling-and-selection-2.js: Removed.
  • editing/execCommand/resources/enabling-and-selection.js: Removed.
  • editing/execCommand/resources/inline-style-after-indentoutdent.js: Removed.
  • editing/execCommand/resources/toggle-compound-styles.js: Removed.
  • editing/execCommand/resources/toggle-style-2.js: Removed.
  • editing/execCommand/resources/toggle-styles.js: Removed.
  • editing/execCommand/resources/toggle-text-decorations.js: Removed.
  • editing/execCommand/script-tests: Added.
  • editing/execCommand/script-tests/TEMPLATE.html: Copied from LayoutTests/editing/execCommand/resources/TEMPLATE.html.
  • editing/execCommand/script-tests/break-out-of-empty-list-item.js: Copied from LayoutTests/editing/execCommand/resources/break-out-of-empty-list-item.js.
  • editing/execCommand/script-tests/convert-style-elements-to-spans.js: Copied from LayoutTests/editing/execCommand/resources/convert-style-elements-to-spans.js.
  • editing/execCommand/script-tests/empty-span-removal.js: Copied from LayoutTests/editing/execCommand/resources/empty-span-removal.js.
  • editing/execCommand/script-tests/enabling-and-selection-2.js: Copied from LayoutTests/editing/execCommand/resources/enabling-and-selection-2.js.
  • editing/execCommand/script-tests/enabling-and-selection.js: Copied from LayoutTests/editing/execCommand/resources/enabling-and-selection.js.
  • editing/execCommand/script-tests/inline-style-after-indentoutdent.js: Copied from LayoutTests/editing/execCommand/resources/inline-style-after-indentoutdent.js.
  • editing/execCommand/script-tests/toggle-compound-styles.js: Copied from LayoutTests/editing/execCommand/resources/toggle-compound-styles.js.
  • editing/execCommand/script-tests/toggle-style-2.js: Copied from LayoutTests/editing/execCommand/resources/toggle-style-2.js.
  • editing/execCommand/script-tests/toggle-styles.js: Copied from LayoutTests/editing/execCommand/resources/toggle-styles.js.
  • editing/execCommand/script-tests/toggle-text-decorations.js: Copied from LayoutTests/editing/execCommand/resources/toggle-text-decorations.js.
  • editing/execCommand/toggle-compound-styles.html:
  • editing/execCommand/toggle-style-2.html:
  • editing/execCommand/toggle-styles.html:
  • editing/execCommand/toggle-text-decorations.html:

Sep 18, 2009:

8:46 PM Changeset in webkit [48547] by Simon Fraser
  • 2 edits in trunk/WebCore

2009-09-18 Simon Fraser <Simon Fraser>

Fix stylistic issue raised in code review for previous commit.

  • rendering/RenderLayerBacking.cpp: (WebCore::hasNonZeroTransformOrigin):
8:44 PM Changeset in webkit [48546] by Simon Fraser
  • 5 edits
    4 adds in trunk

2009-09-18 Simon Fraser <Simon Fraser>

Reviewed by Dan Bernstein.

Element is misplaced during opacity transition with certain configuration of transform-origin and clipping
https://bugs.webkit.org/show_bug.cgi?id=29495

If an element has zero size, but has a transform origin with absolute values,
then the transform origin would not be applied because it is implemented via
anchorPoint, which is expressed as a fraction of the layer size.

Work around this by artificially inflating the size of the backing store when we need to.

Test: compositing/geometry/transfrom-origin-on-zero-size-layer.html

  • rendering/RenderLayerBacking.h:
  • rendering/RenderLayerBacking.cpp: (WebCore::RenderLayerBacking::RenderLayerBacking): Init m_artificiallyInflatedBounds to false.

(WebCore::hasNonZeroTransformOrigin):
Utility function that describes whether the transform-origin contains non-percentage
x or y offsets.

(WebCore::RenderLayerBacking::updateCompositedBounds):
New wrapper method around setCompositedBounds() that applies the size inflation
when necessary, setting the m_artificiallyInflatedBounds as appropriate.

(WebCore::RenderLayerBacking::updateAfterLayout): Call updateCompositedBounds().
(WebCore::RenderLayerBacking::updateGraphicsLayerGeometry): Ditto

  • rendering/RenderLayerCompositor.cpp: (WebCore::RenderLayerCompositor::rebuildCompositingLayerTree): Ditto (WebCore::RenderLayerCompositor::updateCompositingDescendantGeometry): Ditto
6:19 PM Changeset in webkit [48545] by Antti Koivisto
  • 2 edits in trunk/WebCore

https://bugs.webkit.org/show_bug.cgi?id=29512
Don't recalculate style when restoring from the page cache

Patch by Antti Koivisto <Antti Koivisto> on 2009-09-18
Reviewed by Maciej Stachowiak.

FrameLoaderClient::forceLayout() also forces style recalc. Instead call FrameView::forceLayout()
directly to update the scrollbars while keeping the existing style.

Makes back/forward really fast on complex pages (in cases where page cache works).

  • loader/FrameLoader.cpp:

(WebCore::FrameLoader::commitProvisionalLoad):

5:21 PM Changeset in webkit [48544] by kevino@webkit.org
  • 3 edits in trunk/WebKitTools

wx build fixes. Fix the config name under git and allow users to specify
their own waf install for experimenting with new versions.

5:18 PM Changeset in webkit [48543] by atwilson@chromium.org
  • 3 edits in trunk/LayoutTests

REGRESSION: fast/workers/worker-cloneport.html failing intermttently on leopard bot
https://bugs.webkit.org/show_bug.cgi?id=29341

Reviewed by Eric Seidel.

  • fast/workers/worker-cloneport-expected.txt:

Updated to reflect new output (lower clone count threshold).

  • fast/workers/worker-cloneport.html:

Updated test to have a more lenient performance requirement and timeout, to address flakiness on Leopard and Chromium.

4:12 PM Changeset in webkit [48542] by oliver@apple.com
  • 25 edits
    6 adds in trunk

Implement ES5 Object.defineProperty function
https://bugs.webkit.org/show_bug.cgi?id=29503

Reviewed by Geoff Garen

Implement Object.defineProperty. This requires adding the API to
ObjectConstructor, along with a helper function that implements the
ES5 internal ToPropertyDescriptor? function. It then adds
JSObject::defineOwnProperty that implements the appropriate ES5 semantics.
Currently defineOwnProperty uses a delete followed by a put to redefine
attributes of a property, clearly this is less efficient than it could be
but we can improve this if it needs to be possible in future.

3:25 PM Changeset in webkit [48541] by beidson@apple.com
  • 8 edits in trunk/LayoutTests

Speculative fix for:
https://bugs.webkit.org/show_bug.cgi?id=29322
and
https://bugs.webkit.org/show_bug.cgi?id=29505

Reviewed by Alexey Proskuryakov.

Adding a "Connection: close" header might make the tests work more reliably,
and doesn't seem to make anything worse: They all continue to pass on my machine!

  • http/tests/loading/resources/basic-auth-testing.php:
  • http/tests/loading/resources/othersubresources/protected-resource.php:
  • http/tests/loading/resources/protected-resource.php:
  • http/tests/loading/resources/subresources/protected-resource.php:
  • http/tests/xmlhttprequest/resources/cross-origin-authorization.php:
  • http/tests/xmlhttprequest/resources/cross-origin-check-cookies.php:
  • http/tests/xmlhttprequest/resources/cross-origin-no-authorization.php:
3:24 PM Changeset in webkit [48540] by ap@apple.com
  • 2 edits
    1 add in trunk/WebCore

Reviewed by Darin Adler.

https://bugs.webkit.org/show_bug.cgi?id=29510
Active DOM objects should be suspended while a modal dialog is displayed

  • manual-tests/js-timers-beneath-modal-dialog.html: Added a test for JS timers.
  • page/PageGroupLoadDeferrer.cpp: (WebCore::PageGroupLoadDeferrer::PageGroupLoadDeferrer): (WebCore::PageGroupLoadDeferrer::~PageGroupLoadDeferrer): Match other platforms, and make Mac also suspend active DOM objects. Since a page that currently displays a modal dialog cannot go into page cache, there is no danger of suspending an object twice.
3:20 PM Changeset in webkit [48539] by eric@webkit.org
  • 28 edits in trunk/LayoutTests

2009-09-18 Alpha Lam <hclam@chromium.org>

Reviewed by Eric Carlson.

Media layout tests should have a way to provide test files in different formats
https://bugs.webkit.org/show_bug.cgi?id=28327

Updating 25 media layout tests to use media files based on supported codecs.

  • media/progress-event-at-least-one.html: Use findMediaFile() to locate a supported media file.
  • media/video-pause-empty-events.html: ditto.
  • media/video-play-empty-events.html: ditto.
  • media/video-play-pause-events.html: ditto.
  • media/video-played-collapse.html: ditto.
  • media/video-played-ranges-1.html: ditto.
  • media/video-played-reset.html: ditto.
  • media/video-played.js: ditto. (videoPlayedMain):
  • media/video-seek-past-end-paused.html: ditto.
  • media/video-seek-past-end-playing.html: ditto.
  • media/video-seekable.html: ditto.
  • media/video-seeking.html: ditto.
  • media/video-size.html: ditto.
  • media/video-source-error.html: ditto.
  • media/video-source-type-params.html: ditto.
  • media/video-source-type.html: ditto.
  • media/video-source.html: ditto.
  • media/video-src-change.html: ditto.
  • media/video-src-invalid-remove.html: ditto.
  • media/video-src-remove.html: ditto. Use counting.mp4 instead of silence.mpg.
  • media/video-src-remove-expected.txt: Updated results.
  • media/video-src-set.html: ditto.
  • media/video-src-source.html: ditto.
  • media/video-src.html: ditto.
  • media/video-timeupdate-during-playback.html: ditto.
  • media/video-volume.html: ditto.
  • media/video-zoom.html: ditto.
3:12 PM Changeset in webkit [48538] by eric@webkit.org
  • 3 edits in trunk/WebCore

2009-09-18 Csaba Osztrogonac <oszi@inf.u-szeged.hu>

Reviewed by Eric Seidel.

[Qt] Buildfix caused by http://trac.webkit.org/changeset/48513
https://bugs.webkit.org/show_bug.cgi?id=29351

  • bridge/qt/qt_instance.h: createRuntimeObject method renamed to newRuntimeObject.
  • bridge/runtime.h: Visibility of newRuntimeObject method modified to protected.
3:04 PM Changeset in webkit [48537] by andersca@apple.com
  • 2 edits in trunk/LayoutTests

Add failing tests to the skipped list.

  • platform/mac-snowleopard/Skipped:
2:58 PM Changeset in webkit [48536] by eric@webkit.org
  • 4 edits in trunk/WebCore

2009-09-18 Yury Semikhatsky <yurys@chromium.org>

Reviewed by Timothy Hatcher.

Fix parameter substitutions in console.log().

https://bugs.webkit.org/show_bug.cgi?id=29366

  • inspector/front-end/ConsoleView.js: (WebInspector.ConsoleMessage.prototype._format):
  • inspector/front-end/InjectedScript.js: (InjectedScript.getPrototypes): (InjectedScript.CallFrameProxy.prototype._wrapScopeChain):
  • inspector/front-end/utilities.js: ():
2:39 PM Changeset in webkit [48535] by mrowe@apple.com
  • 4 edits in trunk

Versioning.

2:36 PM Changeset in webkit [48534] by mrowe@apple.com
  • 1 copy in tags/Safari-532.0

New tag.

2:34 PM Changeset in webkit [48533] by weinig@apple.com
  • 2 edits in trunk/WebCore

Temporarily remove an assertion that was getting hit when going
back to a page in the page cache while a banner in Safari was visible.
We should re-enable this once that is fixed. See <rdar://problem/7218118>

Reviewed by Geoffrey Garen and Brady Eidson.

  • page/FrameView.cpp:

(WebCore::FrameView::scheduleRelayout):

2:28 PM Changeset in webkit [48532] by andersca@apple.com
  • 2 edits in trunk/WebCore

Try fixing the build again.

  • platform/win/PopupMenuWin.cpp:

(WebCore::PopupMenu::wndProc):

2:23 PM Changeset in webkit [48531] by andersca@apple.com
  • 2 edits in trunk/WebCore

Fix windows build.

  • platform/win/PopupMenuWin.cpp:
1:56 PM Changeset in webkit [48530] by weinig@apple.com
  • 3 edits in trunk/WebCore

Convert another callback type object to store the global object
instead of the frame.

Reviewed by Gavin 'BearClaw' Barraclough.

  • bindings/js/JSCustomXPathNSResolver.cpp:

(WebCore::JSCustomXPathNSResolver::create):
(WebCore::JSCustomXPathNSResolver::JSCustomXPathNSResolver):
(WebCore::JSCustomXPathNSResolver::lookupNamespaceURI):

  • bindings/js/JSCustomXPathNSResolver.h:
1:52 PM Changeset in webkit [48529] by andersca@apple.com
  • 2 edits in trunk/WebCore

https://bugs.webkit.org/show_bug.cgi?id=29332
<rdar://problem/7231652>
REGRESSION (r48446): While a <select> popup menu is open, the
rest of the WebView doesn't respond to mouse move events.

Reviewed by Sam Weinig.

  • platform/win/PopupMenuWin.cpp:

(WebCore::translatePoint):
New helper function that translates a point between HWND coordinates.

(WebCore::PopupMenu::show):
Protect the PopupMenu if someone removes the <select> in response to a mouse
event. Handle WM_HOST_WINDOW_MOUSEMOVE events.

(WebCore::PopupMenu::wndProc):
in the WM_MOUSEMOVE handler, if the mouse is not over the popup, post a
WM_HOST_WINDOW_MOUSEMOVE event so that the host window (the WebView) gets the
mouse move event.

1:49 PM Changeset in webkit [48528] by eric@webkit.org
  • 12 edits in trunk/WebKit/qt

2009-09-18 Norbert Leser <norbert.leser@nokia.com>

Reviewed by Eric Seidel.

Corrected the Symbian specific UID3 values to be assigned
from the "unprotected" pool that permits self-signing of
those test and demo executables. (Added new UID3 values
where they were missing for new components.)

  • QGVLauncher/QGVLauncher.pro:
  • QtLauncher/QtLauncher.pro:
  • tests/benchmarks/loading/tst_loading.pro:
  • tests/benchmarks/painting/tst_painting.pro:
  • tests/qwebelement/qwebelement.pro:
  • tests/qwebframe/qwebframe.pro:
  • tests/qwebhistory/qwebhistory.pro:
  • tests/qwebhistoryinterface/qwebhistoryinterface.pro:
  • tests/qwebpage/qwebpage.pro:
  • tests/qwebplugindatabase/qwebplugindatabase.pro:
  • tests/qwebview/qwebview.pro:
1:35 PM Changeset in webkit [48527] by barraclough@apple.com
  • 4 edits in trunk/JavaScriptCore

2009-09-18 Gabor Loki <loki@inf.u-szeged.hu>

Reviewed by Gavin Barraclough.

Build fix to enable ARM_THUMB2 on Linux
https://bugs.webkit.org/show_bug.cgi?id=

  • jit/ExecutableAllocator.h: (JSC::ExecutableAllocator::cacheFlush):
  • jit/JITStubs.cpp:
  • wtf/Platform.h:
1:30 PM Changeset in webkit [48526] by Simon Fraser
  • 7 edits
    4 adds in trunk

2009-09-18 Simon Fraser <Simon Fraser>

Reviewed by Dave Hyatt.

Compositing layers are incorrectly positioned after scrolling with position:fixed
https://bugs.webkit.org/show_bug.cgi?id=29262

When scrolling a page with compositing layers inside a position:fixed element,
we need to update the compositing layer positions when the scroll position changes.

Test: compositing/geometry/fixed-position.html

  • WebCore.base.exp: Export FrameView::scrollPositionChanged()
  • page/FrameView.h:
  • page/FrameView.cpp: (WebCore::FrameView::scrollPositionChanged): New method that sends the scroll event, and updates compositing layers positions if necessary.
1:18 PM Changeset in webkit [48525] by barraclough@apple.com
  • 16 edits in trunk/JavaScriptCore

2009-09-18 Gabor Loki <loki@inf.u-szeged.hu>

Reviewed by Gavin Barraclough.

Defines two pseudo-platforms for ARM and Thumb-2 instruction set.
https://bugs.webkit.org/show_bug.cgi?id=29122

Introduces WTF_PLATFORM_ARM_TRADITIONAL and WTF_PLATFORM_ARM_THUMB2
macros on ARM platforms. The PLATFORM(ARM_THUMB2) should be used
when Thumb-2 instruction set is the required target. The
PLATFORM(ARM_TRADITIONAL) is for generic ARM instruction set. In
case where the code is common the PLATFORM(ARM) have to be used.

  • assembler/ARMAssembler.cpp:
  • assembler/ARMAssembler.h:
  • assembler/ARMv7Assembler.h:
  • assembler/MacroAssembler.h:
  • assembler/MacroAssemblerARM.cpp:
  • assembler/MacroAssemblerARM.h:
  • assembler/MacroAssemblerCodeRef.h: (JSC::MacroAssemblerCodePtr::MacroAssemblerCodePtr):
  • jit/ExecutableAllocator.h:
  • jit/JIT.h:
  • jit/JITInlineMethods.h: (JSC::JIT::beginUninterruptedSequence): (JSC::JIT::preserveReturnAddressAfterCall): (JSC::JIT::restoreReturnAddressBeforeReturn): (JSC::JIT::restoreArgumentReference): (JSC::JIT::restoreArgumentReferenceForTrampoline):
  • jit/JITOpcodes.cpp:
  • jit/JITStubs.cpp: (JSC::JITThunks::JITThunks):
  • jit/JITStubs.h:
  • wtf/Platform.h:
  • yarr/RegexJIT.cpp: (JSC::Yarr::RegexGenerator::generateEnter):
1:15 PM Changeset in webkit [48524] by Simon Fraser
  • 4 edits
    4 adds in trunk

2009-09-18 Simon Fraser <Simon Fraser>

Reviewed by Dave Hyatt.

Transformed elements inside position:fixed container are clipped incorrectly
https://bugs.webkit.org/show_bug.cgi?id=29346

Fix clipping and hit testing on transformed elements inside a position:fixed element.
Previously, the code used the overflowClipRect of the parent clip rects, but
this is not correct for fixed postion elements. Instead, share code that is
already present in calculateRects() to get the correct rect.

Test: fast/overflow/position-fixed-transform-clipping.html

  • rendering/RenderLayer.h:
  • rendering/RenderLayer.cpp: (WebCore::RenderLayer::paintLayer): (WebCore::RenderLayer::hitTestLayer): Call the new backgroundClipRect() to get the correct clipRect.

(WebCore::RenderLayer::backgroundClipRect):
New method, factored out of calculateRects(), that computes the clip rect,
doing the right thing for fixed position elements.

(WebCore::RenderLayer::calculateRects):
Call the new backgroundClipRect() method.

12:41 PM Changeset in webkit [48523] by mitz@apple.com
  • 2 edits in trunk/LayoutTests

Updated test result for <rdar://problem/7050773>

  • platform/mac/accessibility/document-attributes-expected.txt:
12:06 PM Changeset in webkit [48522] by eric@webkit.org
  • 3 edits in trunk/WebKitTools

2009-09-18 Alex Milowski <alex@milowski.com>

Reviewed by Maciej Stachowiak.

Added checkWebCoreMathMLSupport and hasMathMLSupport to support
checking for whether MathML tests should be run

  • Scripts/run-webkit-tests:
  • Scripts/webkitdirs.pm:
12:00 PM Changeset in webkit [48521] by mitz@apple.com
  • 4 edits
    2 adds in trunk

WebCore: Fix <rdar://problem/7050773> REGRESSION (r40098) Crash at
WebCore::RenderBlock::layoutBlock()
https://bugs.webkit.org/show_bug.cgi?id=29498

Reviewed by Darin Adler.

Test: accessibility/nested-layout-crash.html

  • accessibility/AccessibilityRenderObject.cpp:

(WebCore::AccessibilityRenderObject::updateBackingStore): Changed to

call Document::updateLayoutIgnorePendingStylesheets() instead of
calling RenderObject::layoutIfNeeded(). The latter requires that
there be no pending style recalc, which allows methods that call
Document::updateLayout() to be called during layout without risking
re-entry into layout.

  • accessibility/mac/AccessibilityObjectWrapper.mm:

(-[AccessibilityObjectWrapper accessibilityActionNames]): Null-check

m_object after calling updateBackingStore(), since style recalc may
destroy the renderer, which destroys the accessibility object and
detaches it from the wrapper.

(-[AccessibilityObjectWrapper accessibilityAttributeNames]): Ditto.
(-[AccessibilityObjectWrapper accessibilityAttributeValue:]): Ditto.
(-[AccessibilityObjectWrapper accessibilityFocusedUIElement]): Ditto.
(-[AccessibilityObjectWrapper accessibilityHitTest:]): Ditto.
(-[AccessibilityObjectWrapper accessibilityIsAttributeSettable:]):

Ditto.

(-[AccessibilityObjectWrapper accessibilityIsIgnored]): Ditto.
(-[AccessibilityObjectWrapper accessibilityParameterizedAttributeNames]):

Ditto.

(-[AccessibilityObjectWrapper accessibilityPerformPressAction]): Ditto.
(-[AccessibilityObjectWrapper accessibilityPerformIncrementAction]):

Ditto.

(-[AccessibilityObjectWrapper accessibilityPerformDecrementAction]):

Ditto.

(-[AccessibilityObjectWrapper accessibilityPerformAction:]): Ditto.
(-[AccessibilityObjectWrapper accessibilitySetValue:forAttribute:]):

Ditto.

(-[AccessibilityObjectWrapper accessibilityAttributeValue:forParameter:]):

Ditto.

(-[AccessibilityObjectWrapper accessibilityIndexOfChild:]): Ditto.
(-[AccessibilityObjectWrapper accessibilityArrayAttributeCount:]):

Ditto.

(-[AccessibilityObjectWrapper accessibilityArrayAttributeValues:index:maxCount:]):

Ditto.

LayoutTests: Test for <rdar://problem/7050773> REGRESSION (r40098) Crash at
WebCore::RenderBlock::layoutBlock()
https://bugs.webkit.org/show_bug.cgi?id=29498

Reviewed by Darin Adler.

  • accessibility/nested-layout-crash-expected.txt: Added.
  • accessibility/nested-layout-crash.html: Added.
11:57 AM Changeset in webkit [48520] by eric@webkit.org
  • 2 edits
    3 adds in trunk/WebCore

2009-09-18 Fumitoshi Ukai <ukai@chromium.org>

Reviewed by Simon Hausmann.

Update Qt build system for Web Socket.
https://bugs.webkit.org/show_bug.cgi?id=29270

  • WebCore.pro:
  • platform/network/qt/SocketStreamError.h: Added.
  • platform/network/qt/SocketStreamHandle.h: Added.
  • platform/network/qt/SocketStreamHandleSoup.cpp: Added.
11:45 AM Changeset in webkit [48519] by eric.carlson@apple.com
  • 3 edits in trunk/WebCore

2009-09-18 Eric Carlson <eric.carlson@apple.com>

Reviewed by Darin Adler.

NULL check HTMLMediaElement::m_playedTimeRanges.
Fix for https://bugs.webkit.org/show_bug.cgi?id=29494

  • html/HTMLMediaElement.cpp: (WebCore::HTMLMediaElement::addPlayedRange): New. Create m_playedTimeRanges if necessary, add range specified. (WebCore::HTMLMediaElement::seek): Use addPlayedRange. (WebCore::HTMLMediaElement::played): Use addPlayedRange. Change time comparison to be more readable. (WebCore::HTMLMediaElement::updatePlayState): Ditto.
  • html/HTMLMediaElement.h:
11:30 AM Changeset in webkit [48518] by xan@webkit.org
  • 1 edit
    1 add in trunk/WebKit/gtk

2009-09-18 Xan Lopez <xlopez@igalia.com>

Build fix.

Add missing file to the repository.

  • tests/testhittestresult.c: Added. (test_info_new): (test_info_destroy): (hit_test_result_fixture_setup): (hit_test_result_fixture_teardown): (load_status_cb): (test_webkit_hit_test_result): (main):
11:17 AM Changeset in webkit [48517] by Darin Adler
  • 1 edit in trunk/WebKitTools/ChangeLog

Added bug number.

11:16 AM Changeset in webkit [48516] by Darin Adler
  • 2 edits in trunk/WebKitTools

Some small steps toward improving run-webkit-tests. My goal is to
refactor much more of the script into functions. Later we can add
parallel test running to the tool. But better structure may help
even if someone decides to translate this into another scripting
language instead.

Patch by Darin Adler <Darin Adler> on 2009-08-28
Reviewed by Mark Rowe.

  • Scripts/run-webkit-tests: Break more pieces of the script into

seprate functions. Added readSkippedFiles, findTestsToRun, and
printResults functions. Removed custom code to skip results.html
and instead just put it into the ignoredFiles hash. Fixed some
indentation. Sorted function declarations, global variables,
and options at the top of the file alphabetically so they're not
in a semi-random order.

11:01 AM Changeset in webkit [48515] by weinig@apple.com
  • 3 edits
    2 adds in trunk

WebCore: Follow up fix for https://bugs.webkit.org/show_bug.cgi?id=29276
REGRESSION(r48334): WebKit crashes on file select by drag

Reviewed by Adele Peterson.

Don't use Document.elementFromPoint since it returns null if the point
is outside the viewport. Instead, just hit test ourselves.

Test: fast/events/drag-file-crash.html

  • page/DragController.cpp:

(WebCore::elementUnderMouse):
(WebCore::DragController::tryDocumentDrag):
(WebCore::DragController::concludeEditDrag):

LayoutTests: Test for https://bugs.webkit.org/show_bug.cgi?id=29276
REGRESSION(r48334): WebKit crashes on file select by drag

Reviewed by Adele Peterson.

  • fast/events/drag-file-crash-expected.txt: Added.
  • fast/events/drag-file-crash.html: Added.
10:48 AM Changeset in webkit [48514] by Darin Adler
  • 1 edit in trunk/WebCore/ChangeLog

Fix date on a change log entry.

10:48 AM Changeset in webkit [48513] by Darin Adler
  • 11 edits in trunk/WebCore

Each wrapped Objective-C object should use a single RuntimeObjectImp
https://bugs.webkit.org/show_bug.cgi?id=29351
rdar://problem/7142294

Patch by Darin Adler <Darin Adler> on 2009-09-18
Reviewed by Sam Weinig.

  • WebCore.base.exp: Added a newly-needed exported symbol.
  • bindings/objc/DOMInternal.h: Eliminated unused

createWrapperCacheWithIntegerKeys; it has not been needed since the
RGBColor wrappers were reworked.

  • bindings/objc/DOMInternal.mm: Ditto.
  • bridge/objc/objc_instance.h: Made the create function non-inline.
  • bridge/objc/objc_instance.mm:

(createInstanceWrapperCache): Added. Creates an appropriate map table.
(ObjcInstance::create): Moved here from header. Uses NSMapGet and
NSMapInsert to cache the instance in a map table.
(ObjcInstance::~ObjcInstance): Added a call to NSMapRemove to remove
the instance from the map table.

  • bridge/qt/qt_instance.cpp:

(JSC::Bindings::QtInstance::~QtInstance): Remove unneeded code to remove
the instance from cachedObjects, which no longer exists.
(JSC::Bindings::QtInstance::newRuntimeObject): Renamed to overload new
bottleneck. Caching is now handled by the base class.

  • bridge/runtime.cpp:

(JSC::Bindings::Instance::Instance): Initialize m_runtimeObject to 0.
(JSC::Bindings::Instance::~Instance): Assert m_runtimeObject is 0.
(JSC::Bindings::Instance::createRuntimeObject): Use m_runtimeObject
if it's already set. Set m_runtimeObject and call addRuntimeObject
if it's not.
(JSC::Bindings::Instance::newRuntimeObject): Added. Virtual function,
used only by createRuntimeObject.
(JSC::Bindings::Instance::willDestroyRuntimeObject): Added.
Calls removeRuntimeObject and then clears m_runtimeObject.
(JSC::Bindings::Instance::willInvalidateRuntimeObject): Added.
Clears m_runtimeObject.

  • bridge/runtime.h: Made createRuntimeObject non-virtual. Added

willDestroyRuntimeObject, willInvalidateRuntimeObject,
newRuntimeObject, and m_runtimeObject.

  • bridge/runtime_object.cpp:

(JSC::RuntimeObjectImp::RuntimeObjectImp): Removed addRuntimeObject
call, now handled by caller.
(JSC::RuntimeObjectImp::~RuntimeObjectImp): Replaced removeRuntimeObject
call with willDestroyRuntimeObject call; the latter nows calls
removeRuntimeObject.
(JSC::RuntimeObjectImp::invalidate): Added willInvalidateRuntimeObject
call.

  • bridge/runtime_object.h: Made invalidate non-virtual.
10:46 AM Changeset in webkit [48512] by kenneth@webkit.org
  • 2 edits in trunk/WebKit/gtk

[Gtk] Unreviewed build fix.

Patch by Kenneth Rohde Christiansen <kenneth@webkit.org> on 2009-09-18

  • WebCoreSupport/ChromeClientGtk.cpp:

(WebKit::ChromeClient::platformPageClient):

10:34 AM Changeset in webkit [48511] by kenneth@webkit.org
  • 47 edits in trunk

Make PlatformWindow return something else than PlatformWidget
https://bugs.webkit.org/show_bug.cgi?id=29085

Patch by Kenneth Rohde Christiansen <kenneth@webkit.org> on 2009-09-17
Reviewed by Simon Hausmann.

WebCore:

Make platformWindow return a PlatformPageClient
(for now typedef'ed to PlatformWidget)

Also, change the name of platformWindow to platformPageClient()

  • accessibility/gtk/AccessibilityObjectWrapperAtk.cpp:

(getPangoLayoutForAtk):

  • accessibility/win/AXObjectCacheWin.cpp:

(WebCore::AXObjectCache::postPlatformNotification):
(WebCore::AXObjectCache::handleFocusedUIElementChanged):

  • loader/EmptyClients.h:

(WebCore::EmptyChromeClient::platformPageClient):

  • page/Chrome.cpp:

(WebCore::Chrome::platformPageClient):

  • page/Chrome.h:
  • page/ChromeClient.h:
  • page/mac/EventHandlerMac.mm:

(WebCore::EventHandler::wheelEvent):
(WebCore::EventHandler::currentPlatformMouseEvent):
(WebCore::EventHandler::sendContextMenuEvent):
(WebCore::EventHandler::eventMayStartDrag):

  • platform/HostWindow.h:
  • platform/Widget.h:
  • platform/gtk/PlatformScreenGtk.cpp:

(WebCore::getVisual):
(WebCore::screenRect):
(WebCore::screenAvailableRect):

  • platform/gtk/PopupMenuGtk.cpp:

(WebCore::PopupMenu::show):

  • platform/gtk/ScrollViewGtk.cpp:

(WebCore::ScrollView::platformAddChild):
(WebCore::ScrollView::platformRemoveChild):
(WebCore::ScrollView::visibleContentRect):

  • platform/gtk/WidgetGtk.cpp:

(WebCore::Widget::setFocus):
(WebCore::Widget::setCursor):

  • platform/qt/PlatformScreenQt.cpp:

(WebCore::screenDepth):
(WebCore::screenDepthPerComponent):
(WebCore::screenIsMonochrome):
(WebCore::screenRect):
(WebCore::screenAvailableRect):

  • platform/qt/PopupMenuQt.cpp:

(WebCore::PopupMenu::show):

  • platform/qt/WidgetQt.cpp:

(WebCore::Widget::setCursor):

  • platform/win/PlatformScreenWin.cpp:

(WebCore::monitorInfoForWidget):

  • platform/win/PopupMenuWin.cpp:

(WebCore::PopupMenu::show):
(WebCore::PopupMenu::calculatePositionAndSize):
(WebCore::PopupMenu::wndProc):

  • platform/wx/RenderThemeWx.cpp:

(WebCore::nativeWindowForRenderObject):

  • platform/wx/ScrollbarThemeWx.cpp:

(WebCore::ScrollbarThemeWx::paint):

  • plugins/gtk/PluginViewGtk.cpp:

(WebCore::PluginView::getValue):
(WebCore::PluginView::forceRedraw):
(WebCore::PluginView::platformStart):

  • plugins/mac/PluginViewMac.cpp:

(WebCore::PluginView::platformStart):

  • plugins/qt/PluginViewQt.cpp:

(WebCore::PluginView::handleKeyboardEvent):
(WebCore::PluginView::getValue):
(WebCore::PluginView::platformStart):

  • plugins/win/PluginViewWin.cpp:

(WebCore::PluginView::getValue):
(WebCore::PluginView::forceRedraw):
(WebCore::PluginView::platformStart):

WebKit/gtk:

Reflect the rename of platformWindow and it's return type.

  • WebCoreSupport/ChromeClientGtk.cpp:

(WebKit::ChromeClient::platformPageClient):
(WebKit::ChromeClient::runOpenPanel):

  • WebCoreSupport/ChromeClientGtk.h:
  • webkit/webkitprivate.cpp:

(currentToplevelCallback):

  • webkit/webkitwebview.cpp:

(webkit_web_view_popup_menu_handler):

WebKit/haiku:

Reflect the rename of platformWindow and it's return type.

  • WebCoreSupport/ChromeClientHaiku.cpp:

(WebCore::ChromeClientHaiku::platformPageClient):

  • WebCoreSupport/ChromeClientHaiku.h:

WebKit/mac:

Reflect the rename of platformWindow and it's return type.

  • WebCoreSupport/WebChromeClient.h:
  • WebCoreSupport/WebChromeClient.mm:

(WebChromeClient::platformPageClient):

WebKit/qt:

Reflect the rename of platformWindow and it's return type.

  • WebCoreSupport/ChromeClientQt.cpp:

(WebCore::ChromeClientQt::platformPageClient):

  • WebCoreSupport/ChromeClientQt.h:

WebKit/win:

Reflect the rename of platformWindow and it's return type.

  • AccessibleBase.cpp:

(AccessibleBase::get_accParent):

  • WebCoreSupport/WebChromeClient.cpp:

(WebChromeClient::platformPageClient):

  • WebCoreSupport/WebChromeClient.h:

WebKit/wx:

Reflect the rename of platformWindow and it's return type.

  • WebKitSupport/ChromeClientWx.cpp:

(WebCore::ChromeClientWx::platformPageClient):

  • WebKitSupport/ChromeClientWx.h:
  • WebKitSupport/EditorClientWx.cpp:

(WebCore::EditorClientWx::isEditable):
(WebCore::EditorClientWx::registerCommandForUndo):
(WebCore::EditorClientWx::registerCommandForRedo):
(WebCore::EditorClientWx::clearUndoRedoOperations):
(WebCore::EditorClientWx::canUndo):
(WebCore::EditorClientWx::canRedo):
(WebCore::EditorClientWx::undo):
(WebCore::EditorClientWx::redo):

8:47 AM Changeset in webkit [48510] by Simon Hausmann
  • 3 edits in trunk/WebCore

[Qt] Web inspector UI adjustments specific to the Qt platform:

  • Hide the close button
  • Hide the dock button
  • Disable the draggable toolbar

Patch by Jocelyn Turcotte <jocelyn.turcotte@nokia.com> on 2009-09-18
Reviewed by Simon Hausmann.

https://bugs.webkit.org/show_bug.cgi?id=29384

  • inspector/front-end/inspector.css:
  • inspector/front-end/inspector.js:

(WebInspector.toolbarDragStart):

8:34 AM Changeset in webkit [48509] by Simon Hausmann
  • 3 edits in trunk/JavaScriptCore

Fix the Qt/Windows CE build.

Patch by Joerg Bornemann <joerg.bornemann@nokia.com> on 2009-09-18
Reviewed by Simon Hausmann.

within Qt externally.

  • wtf/DateMath.cpp: Removed unnecessary Qt #ifdef, for the

Qt build these functions are no external, too.

7:28 AM Changeset in webkit [48508] by Simon Hausmann
  • 6 edits in trunk/WebCore

QtWebKit Windows CE compile fixes

Patch by Joerg Bornemann <joerg.bornemann@nokia.com> on 2009-09-18
Reviewed by Simon Hausmann.

Exclude certain pure-WINCE specific code paths from the Qt build.

  • platform/graphics/BitmapImage.h:
  • platform/graphics/FontCache.h:
  • platform/graphics/MediaPlayer.cpp:
  • platform/text/TextEncodingRegistry.cpp:

(WebCore::buildBaseTextCodecMaps):
(WebCore::extendTextCodecMaps):

  • plugins/PluginView.cpp:

(WebCore::PluginView::stop): Guard this code block with NETSCAPE_PLUGIN_API as
the corresponding PluginViewWndProc has the same guard in the header file.

7:08 AM Changeset in webkit [48507] by xan@webkit.org
  • 2 edits in trunk/WebKit/gtk

2009-09-18 Xan Lopez <xlopez@igalia.com>

Reviewed by Jan Alonzo.

Document webkit_web_view_stop_loading.

  • webkit/webkitwebview.cpp:
6:53 AM Changeset in webkit [48506] by xan@webkit.org
  • 5 edits in trunk

2009-09-18 Xan Lopez <xlopez@igalia.com>

Reviewed by Gustavo Noronha and Jan Alonzo.

[GTK] context menu overriding API is very limited
https://bugs.webkit.org/show_bug.cgi?id=27546

Add new tests to the build.

  • GNUmakefile.am:

WebKit/gtk:

2009-09-18 Xan Lopez <xlopez@igalia.com>

Reviewed by Gustavo Noronha and Jan Alonzo.

[GTK] context menu overriding API is very limited
https://bugs.webkit.org/show_bug.cgi?id=27546

Add webkit_web_view_get_hit_test_result, a function to get a hit
test result from a GdkEventButton. Useful to let applications
decide between several actions on button press depending on what
is being pressed.

  • webkit/webkitwebview.cpp: (webkit_web_view_stop_loading): (documentPointForWindowPoint): (webkit_web_view_get_hit_test_result):
  • webkit/webkitwebview.h:
6:53 AM Changeset in webkit [48505] by xan@webkit.org
  • 7 edits
    2 adds in trunk

2009-09-14 Xan Lopez <xlopez@igalia.com>

Reviewed by Gustavo Noronha and Jan Alonzo.

[GTK] context menu overriding API is very limited
https://bugs.webkit.org/show_bug.cgi?id=27546

Add WebKitHitTestResult to the build.

  • GNUmakefile.am:

WebKit/gtk:

2009-09-18 Xan Lopez <xlopez@igalia.com>

Reviewed by Gustavo Noronha and Jan Alonzo.

[GTK] context menu overriding API is very limited
https://bugs.webkit.org/show_bug.cgi?id=27546

Add WebKitHitTestResult, a wrapper over HitTestResult. It contains
context information about a point in the web page.

  • webkit/webkit.h:
  • webkit/webkitdefines.h:
  • webkit/webkithittestresult.cpp: Added. (webkit_hit_test_result_finalize): (webkit_hit_test_result_get_property): (webkit_hit_test_result_set_property): (webkit_hit_test_result_class_init): (webkit_hit_test_result_init):
  • webkit/webkithittestresult.h: Added.
  • webkit/webkitprivate.cpp: (WebKit::kit):
  • webkit/webkitprivate.h:
6:01 AM Changeset in webkit [48504] by Simon Hausmann
  • 4 edits in trunk/WebKit/qt

[Qt] Add persistence support for configuration options in the
inspector.

Patch by Jocelyn Turcotte <jocelyn.turcotte@nokia.com> on 2009-09-18
Reviewed by Simon Hausmann.

  • Api/qwebinspector.cpp:
  • QtLauncher/main.cpp:

(main):

  • WebCoreSupport/InspectorClientQt.cpp:

(WebCore::InspectorClientQt::populateSetting):
(WebCore::InspectorClientQt::storeSetting):
(WebCore::variantToSetting):
(WebCore::settingToVariant):

2:35 AM Changeset in webkit [48503] by eric@webkit.org
  • 6 edits in trunk

2009-09-18 Steve Block <steveblock@google.com>

Reviewed by Dimitri Glazkov.

Geolocation does not correctly handle Infinity for PositionOptions properties.
https://bugs.webkit.org/show_bug.cgi?id=29099

  • fast/dom/Geolocation/resources/argument-types.js: Modified. Test passing positive and negative Infinity to Geolocation methods.
  • fast/dom/Geolocation/argument-types-expected.txt: Modified. Expected result for above test.

2009-09-18 Steve Block <steveblock@google.com>

Reviewed by Dimitri Glazkov.

Geolocation does not correctly handle Infinity for PositionOptions properties.
https://bugs.webkit.org/show_bug.cgi?id=29099

  • bindings/js/JSGeolocationCustom.cpp: Modified. (WebCore::createPositionOptions): Modified. If timeout or maximumAge is positive infinity, applies these values as a special case.
  • page/PositionOptions.h: Modified. (WebCore::PositionOptions::hasMaximumAge): Added. Determines whether the object has a maximum age. (WebCore::PositionOptions::maximumAge): Modified. Asserts that the object has a maximum age. (WebCore::PositionOptions::clearMaximumAge): Added. Clears the maximum age. (WebCore::PositionOptions::setMaximumAge): Modified. Registers that the maximum age has been set. (WebCore::PositionOptions::PositionOptions): Modified. Registers that the maximum age has been set.
2:18 AM Changeset in webkit [48502] by Simon Hausmann
  • 5 edits in trunk/WebKit/qt

Fixed a bunch of documentation warnings.

Patch by Simon Hausmann <simon.hausmann@nokia.com> on 2009-09-18
Reviewed by Ariya Hidayat.

  • Api/qwebgraphicsitem.cpp:
  • Api/qwebplugindatabase.cpp:
  • Api/qwebpluginfactory.cpp:
  • Api/qwebsecurityorigin.cpp:
1:45 AM Changeset in webkit [48501] by Simon Hausmann
  • 2 edits in trunk/WebKit/qt

Added a test that console output works.

Patch by Warwick Allison <warwick.allison@nokia.com> on 2009-09-18
Reviewed by Simon Hausmann.

  • tests/qwebpage/tst_qwebpage.cpp:

(ConsolePage::ConsolePage):
(ConsolePage::javaScriptConsoleMessage):
(tst_QWebPage::consoleOutput):

Sep 17, 2009:

10:21 PM Changeset in webkit [48500] by weinig@apple.com
  • 2 edits in trunk/WebCore

Fix for https://bugs.webkit.org/show_bug.cgi?id=29276
REGRESSION(r48334): WebKit crashes on file select by drag

Reviewed by Adele Peterson.

Document.elementFromPoint now takes point in client space, not page space.

  • page/DragController.cpp:

(WebCore::DragController::tryDocumentDrag):
(WebCore::DragController::concludeEditDrag):

6:32 PM Changeset in webkit [48499] by ajwong@chromium.org
  • 5 edits in trunk/WebCore

2009-09-17 Albert J. Wong <ajwong@chromium.org>

Reviewed by David Levin.

Reimplement default media UI for Mac Chromium to match the style
of the Windows and Linux versions. Also breaks the dependency
on the internal wk* functions that were previously used to
render the media controller widgets.
https://bugs.webkit.org/show_bug.cgi?id=29161

No media layout tests are currently enabled in Mac Chromium, so
nothing needs rebaselineing, etc.

This is a recommit of r48438 with a compile fix and merges of
recent changes to the file.

  • css/mediaControlsChromium.css:
  • rendering/RenderThemeChromiumMac.h:
  • rendering/RenderThemeChromiumMac.mm: (WebCore::mediaElementParent): (WebCore::RenderThemeChromiumMac::extraMediaControlsStyleSheet): (WebCore::mediaSliderThumbImage): (WebCore::mediaVolumeSliderThumbImage): (WebCore::RenderThemeChromiumMac::paintSliderTrack): (WebCore::RenderThemeChromiumMac::adjustSliderThumbSize): (WebCore::RenderThemeChromiumMac::paintMediaButtonInternal): (WebCore::RenderThemeChromiumMac::paintMediaPlayButton): (WebCore::RenderThemeChromiumMac::paintMediaMuteButton): (WebCore::RenderThemeChromiumMac::paintMediaSliderTrack): (WebCore::RenderThemeChromiumMac::paintMediaVolumeSliderTrack): (WebCore::RenderThemeChromiumMac::paintMediaSliderThumb): (WebCore::RenderThemeChromiumMac::paintMediaVolumeSliderThumb): (WebCore::RenderThemeChromiumMac::paintMediaControlsBackground):
  • rendering/RenderThemeChromiumSkia.cpp: (WebCore::RenderThemeChromiumSkia::adjustSliderThumbSize):
5:06 PM Changeset in webkit [48498] by bweinstein@apple.com
  • 2 edits in trunk/LayoutTests

2009-09-17 Brian Weinstein <bweinstein@apple.com>

Rubber-stamped by Steve Falkenburg.

Add failing test on both Windows Debug and Release to the
Windows Skipped List.


http/tests/xmlhttprequest/xmlhttprequest-missing-file-exception.html is
being tracked by <https://bugs.webkit.org/show_bug.cgi?id=29353>.

  • platform/win/Skipped:
4:59 PM Changeset in webkit [48497] by bweinstein@apple.com
  • 3 edits in trunk/WebCore

2009-09-17 Brian Weinstein <bweinstein@apple.com>

Reviewed by Timothy Hatcher.

The Console scope bar should have a divider between All and the other possible
values (Errors, Warnings, Logs). It will look something like:


All | Errors Warnings Logs.

  • inspector/front-end/ConsoleView.js: (WebInspector.ConsoleView.createDividerElement): (WebInspector.ConsoleView):
  • inspector/front-end/inspector.css:
4:03 PM Changeset in webkit [48496] by bweinstein@apple.com
  • 2 edits in trunk/WebKit/win

2009-09-17 Brian Weinstein <bweinstein@apple.com>

Reviewed by Adam Roben.

Remove assertions that were being hit by calls to
m_verticalScrollbar->invalidate(). These assertions were valid,
but they were causing tests to fail, so replacing with a FIXME
until we can find out the real cause/solution that is being tracked
by http://webkit.org/b/29350.

  • WebView.cpp: (WebView::addToDirtyRegion): (WebView::paintIntoBackingStore):
3:54 PM Changeset in webkit [48495] by weinig@apple.com
  • 3 edits in trunk/WebCore

Remove additional references to JSVoidCallback which no longer exists.

Reviewed by Mark Rowe.

  • DerivedSources.cpp:
  • WebCore.vcproj/WebCore.vcproj:
3:48 PM Changeset in webkit [48494] by eric@webkit.org
  • 21 edits in trunk/LayoutTests

2009-09-17 Alpha Lam <hclam@chromium.org>

Reviewed by Eric Carlson.

Media layout tests should have a way to provide test files in different formats
https://bugs.webkit.org/show_bug.cgi?id=28327

Updating 19 media layout tests to use media files based on supported codecs.

  • media/media-file.js: Prefer .wav over other formats as this is used the most in tests for mac port. Most of audio tests use media/content/test.wav as test file for mac, so this change would make sure findMediaFile() will return test.wav but not test.mp3 or other formats. (setSrcById): Fixing bug in code.
  • media/video-canvas-source.html: Use findMediaFile() to locate a media file based on supported types.
  • media/video-click-dblckick-standalone.html: ditto.
  • media/video-controls-transformed.html: ditto.
  • media/video-controls-visible-audio-only.html: ditto.
  • media/video-controls-zoomed.html: ditto.
  • media/video-controls.html: ditto.
  • media/video-currentTime-set.html: ditto.
  • media/video-currentTime-set2.html: ditto.
  • media/video-currentTime.html: ditto.
  • media/video-display-none-crash.html: ditto.
  • media/video-display-toggle.html: ditto.
  • media/video-dom-autoplay.html: ditto.
  • media/video-dom-src.html: ditto.
  • media/video-error-abort.html: ditto.
  • media/video-load-networkState.html: ditto.
  • media/video-load-readyState.html: ditto.
  • media/video-loop.html: ditto.
  • media/video-muted.html: ditto.
  • media/video-no-autoplay.html: ditto.
3:48 PM Changeset in webkit [48493] by weinig@apple.com
  • 2 edits in trunk/WebCore

Remove commented out onhashchange attribute now that it is implemented.

Reviewed by Brady Eidson.

  • page/DOMWindow.idl:
3:23 PM Changeset in webkit [48492] by andersca@apple.com
  • 5 edits in trunk

WebCore: <rdar://problem/7007541>
CrashTracer: 4800+ crashes in Safari at com.apple.WebKit • WTF::HashTableIterator...

Reviewed by Oliver Hunt.

Make RuntimeObjectImp more robust against m_instance being a null (which can happen if an OOP plug-in
crashes while we're calling into it).

  • bridge/runtime_object.cpp:

(JSC::RuntimeObjectImp::RuntimeObjectImp):
(JSC::RuntimeObjectImp::~RuntimeObjectImp):
(JSC::RuntimeObjectImp::invalidate):
(JSC::RuntimeObjectImp::fallbackObjectGetter):
(JSC::RuntimeObjectImp::fieldGetter):
(JSC::RuntimeObjectImp::methodGetter):
(JSC::RuntimeObjectImp::getOwnPropertySlot):
(JSC::RuntimeObjectImp::getOwnPropertyDescriptor):
(JSC::RuntimeObjectImp::put):
(JSC::RuntimeObjectImp::defaultValue):
(JSC::RuntimeObjectImp::getCallData):
(JSC::RuntimeObjectImp::getConstructData):
(JSC::RuntimeObjectImp::getPropertyNames):

  • bridge/runtime_object.h:

(JSC::RuntimeObjectImp::getInternalInstance):

WebKit/mac: <rdar://problem/7007541>
CrashTracer: 4800+ crashes in Safari at com.apple.WebKit • WTF::HashTableIterator...

Reviewed by Oliver Hunt.

Add null checks for m_instanceProxy (It will be null when a plug-in has crashed).

  • Plugins/Hosted/ProxyInstance.mm:

(WebKit::ProxyInstance::invoke):
(WebKit::ProxyInstance::supportsInvokeDefaultMethod):
(WebKit::ProxyInstance::supportsConstruct):
(WebKit::ProxyInstance::getPropertyNames):
(WebKit::ProxyInstance::methodsNamed):
(WebKit::ProxyInstance::fieldNamed):
(WebKit::ProxyInstance::fieldValue):
(WebKit::ProxyInstance::setFieldValue):
(WebKit::ProxyInstance::invalidate):

1:54 PM Changeset in webkit [48491] by eric@webkit.org
  • 5 edits in trunk/WebCore

2009-09-17 Yury Semikhatsky <yurys@chromium.org>

Reviewed by Timothy Hatcher.

Wrap primitive values (as objects) in InspectorController::wrap.

https://bugs.webkit.org/show_bug.cgi?id=28983

  • inspector/InspectorController.cpp: (WebCore::InspectorController::wrapObject): objects of any type will be wrapped into proxies, only object proxies will have objectId.
  • inspector/front-end/ConsoleView.js: (WebInspector.ConsoleView.prototype.completions): there is InjectedScript.getCompletionsi that accepts an expression and returns possible completions. This way we don't need to wrap and unwrap the completions result into a proxy object.
  • inspector/front-end/InjectedScript.js: (InjectedScript.getCompletions): (InjectedScript.evaluate): (InjectedScript._evaluateOn): (InjectedScript.createProxyObject):
  • inspector/front-end/InjectedScriptAccess.js:
1:45 PM Changeset in webkit [48490] by Nate Chapin
  • 2 edits in trunk/WebCore

2009-09-17 Nate Chapin <Nate Chapin>

Reviewed by Dimitri Glazkov.

Wrap PageTransitionEvents properly for V8's use.

https://bugs.webkit.org/show_bug.cgi?id=29340

Fixes Chromium's failures for LayoutTests/fast/events/pageshow-pagehide.html.

  • bindings/v8/V8DOMWrapper.cpp: (WebCore::V8DOMWrapper::convertEventToV8Object): Wrap PageTransitionEvents properly.
1:12 PM Changeset in webkit [48489] by Simon Fraser
  • 3 edits
    3 adds in trunk

2009-09-17 Simon Fraser <Simon Fraser>

Reviewed by Dave Hyatt.

Hardware-accelerated opacity transition on inline asserts
https://bugs.webkit.org/show_bug.cgi?id=29342

Remove an erroneous toRenderBox() that could be called on a RenderInline; we can just
pass an empty size, because the box size is only required for transform animations.

Test: compositing/transitions/opacity-on-inline.html

  • rendering/RenderLayerBacking.cpp: (WebCore::RenderLayerBacking::startTransition):
1:07 PM Changeset in webkit [48488] by eric@webkit.org
  • 2 edits in trunk/WebKitSite

2009-09-17 Eric Seidel <eric@webkit.org>

Reviewed by Darin Adler.

Update contributing.html to mention recently added tools.
https://bugs.webkit.org/show_bug.cgi?id=29318

Update our contributing instructions to mention
the new tools (check-webkit-style and commit-queue)
recently added to make contributions easier.

  • coding/contributing.html:
    • Mention check-webkit-style as an optional helper tool.
    • Mention checking the 'patch' checkbox.
    • Mention the commit-queue as an optional helper tool.
    • Remove "or in email" since patch reviews are all done via bugzilla.
    • Encourage contributers to be responsible for getting their patch landed. Provide a list of committers.
    • Mention commit-queue as an optional help in getting your patch landed.
    • Give an overview of the commit-queue process and link to the Commit Queue docs.
1:03 PM Changeset in webkit [48487] by kov@webkit.org
  • 2 edits in trunk/LayoutTests

2009-09-17 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk>

Rubber-stamped by Brady Eidson.

Tiger fails test http/tests/loading/redirect-with-no-location-crash.html added in r48413
https://bugs.webkit.org/show_bug.cgi?id=29329

Skip test that fails on Tiger because of a bug in its version of
CFNetwork.

  • platform/mac-tiger/Skipped:
12:59 PM Changeset in webkit [48486] by eric@webkit.org
  • 2 edits in trunk/WebCore

2009-09-17 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

[V8] OwnHandle might get a weak callback after destruction
https://bugs.webkit.org/show_bug.cgi?id=29172

Be sure to clear out weak reference so we don't get a weak callback
after we've destructed ourselves. Also, removed some tricky methods
that had no clients.

  • bindings/v8/OwnHandle.h: (WebCore::OwnHandle::clear):
12:52 PM Changeset in webkit [48485] by eric@webkit.org
  • 2 edits
    1 move in trunk/LayoutTests

2009-09-17 Eric Seidel <eric@webkit.org>

Reviewed by Simon Fraser.

REGRESSION: media/video-size-intrinsic-scale.html (and other media tests?) crashing/timing-out intermittently
https://bugs.webkit.org/show_bug.cgi?id=28845

Skip media/video-size-intrinsic-scale.html in hopes of stopping the crashers.
I ran the media tests with --iterations 30 w/o seeing a crash.
I also re-enabled media/video-source-add-src.html now that we know it is not at fault.

  • media/video-source-add-src.html: Renamed from LayoutTests/media/video-source-add-src.html-disabled.
  • platform/mac-leopard/Skipped:
12:43 PM Changeset in webkit [48484] by eric@webkit.org
  • 1 edit
    9 adds in trunk/LayoutTests

2009-09-17 Anton Muhin <antonm@chromium.org>

Reviewed by Adam Barth.

Add layout tests to verify there is no security leaks if someone sets a prototype of top
window to its child window.
https://bugs.webkit.org/show_bug.cgi?id=29334

  • http/tests/security/resources/iframe-with-element.html: Added.
  • http/tests/security/xss-DENIED-htmlelelment-with-iframe-proto-expected.txt: Added.
  • http/tests/security/xss-DENIED-htmlelelment-with-iframe-proto.html: Added.
  • http/tests/security/xss-DENIED-method-with-iframe-proto-expected.txt: Added.
  • http/tests/security/xss-DENIED-method-with-iframe-proto.html: Added.
  • http/tests/security/xss-DENIED-non-shadowable-propterty-with-iframe-proto-expected.txt: Added.
  • http/tests/security/xss-DENIED-non-shadowable-propterty-with-iframe-proto.html: Added.
  • http/tests/security/xss-DENIED-regular-propterty-with-iframe-proto-expected.txt: Added.
  • http/tests/security/xss-DENIED-regular-propterty-with-iframe-proto.html: Added.
12:13 PM Changeset in webkit [48483] by Dimitri Glazkov
  • 2 edits in trunk/WebCore

2009-09-17 Dimitri Glazkov <Dimitri Glazkov>

Unreviewed, build fix.

[V8] Partial roll out of http://trac.webkit.org/changeset/48455 to
fix crashes that started happening in V8Proxy::getEnteredContext().

  • bindings/v8/ScheduledAction.cpp: (WebCore::ScheduledAction::execute):
12:10 PM Changeset in webkit [48482] by Chris Fleizach
  • 7 edits
    2 adds in trunk

AX: labels of checkboxes should, when hit-tested, return the checkbox
https://bugs.webkit.org/show_bug.cgi?id=29335

Reviewed by Beth Dakin.

WebCore:

When an accessibility hit test is done and it hits the label of a control element,
the control element should be returned instead of nothing, since the label
itself is usually ignored.

Test: accessibility/label-for-control-hittest.html

  • accessibility/AccessibilityObject.h:

(WebCore::AccessibilityObject::correspondingControlForLabelElement):

  • accessibility/AccessibilityRenderObject.cpp:

(WebCore::AccessibilityRenderObject::accessibilityIsIgnored):
(WebCore::AccessibilityRenderObject::doAccessibilityHitTest):
(WebCore::AccessibilityRenderObject::correspondingControlForLabelElement):

  • accessibility/AccessibilityRenderObject.h:

LayoutTests:

  • accessibility/label-for-control-hittest-expected.txt: Added.
  • accessibility/label-for-control-hittest.html: Added.
  • platform/gtk/Skipped:
  • platform/win/Skipped:
12:08 PM Changeset in webkit [48481] by Dimitri Glazkov
  • 2 edits in trunk/WebCore

2009-09-17 Avi Drissman <avi@chromium.org>

Reviewed by Dimitri Glazkov, build fix.

Change to make RenderThemeChromiumMac compile inside of non PLATFORM(MAC).
https://bugs.webkit.org/show_bug.cgi?id=29243

Covered by existing tests.

  • rendering/RenderThemeChromiumMac.mm: (WebCore::RenderThemeChromiumMac::paintMediaSliderTrack):
12:06 PM Changeset in webkit [48480] by Dimitri Glazkov
  • 2 edits in trunk/WebCore

2009-09-17 Dimitri Glazkov <Dimitri Glazkov>

Reviewed by Eric Seidel.

[V8] Accessing properties/methods of an object, created with document.implementation.createDocumentType
creates nodes that have no document (ScriptExecutionContext), which in turn produces NULL-ref crashes.
https://bugs.webkit.org/show_bug.cgi?id=26402

Test: fast/dom/DOMImplementation/detached-doctype.html

fast/dom/doctype-event-listener-crash.html

  • bindings/v8/V8DOMWrapper.cpp: (WebCore::V8DOMWrapper::getEventListener): Added an extra NULL-check.
11:39 AM Changeset in webkit [48479] by bweinstein@apple.com
  • 2 edits in trunk/LayoutTests

2009-09-17 Brian Weinstein <bweinstein@apple.com>

Rubber-stamped by Adam Roben.

Add a newline to the end of the expected file, should fix results.

  • platform/win/transforms/2d/hindi-rotated-expected.txt:
11:32 AM Changeset in webkit [48478] by adachan@apple.com
  • 3 edits in trunk/WebKit/win

Post WebViewDidChangeSelectionNotification when the text selection changes.

Fixes <http://webkit.org/b/29321>

Reviewed by Adam Roben.

  • Interfaces/IWebView.idl:
  • WebCoreSupport/WebEditorClient.cpp: (WebEditorClient::respondToChangedSelection):
11:09 AM Changeset in webkit [48477] by kevino@webkit.org
  • 2 edits in trunk/WebKitTools

wx build fix, add missing dependency.

11:05 AM Changeset in webkit [48476] by bweinstein@apple.com
  • 4 edits in trunk/LayoutTests

2009-09-17 Brian Weinstein <bweinstein@apple.com>

Rubber-stamped by Adam Roben.

Updated Windows results on three failing tests, adding font-smoothing to computed-style,
and udpated the hindi-rotated-expected to what it has been getting on the bots.

  • platform/win/fast/css/getComputedStyle/computed-style-expected.txt:
  • platform/win/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
  • platform/win/transforms/2d/hindi-rotated-expected.txt:
10:44 AM Changeset in webkit [48475] by mitz@apple.com
  • 1 add in trunk/WebCore/platform/graphics/FontSmoothingMode.h

Add file that was missing from the last change

10:33 AM Changeset in webkit [48474] by mitz@apple.com
  • 11 edits in trunk/WebCore

FontDescription.h includes RenderStyleConstants.h, which violates layering
https://bugs.webkit.org/show_bug.cgi?id=29327

Reviewed by Simon Fraser.

  • GNUmakefile.am: Added FontSmoothingMode.h.
  • WebCore.gypi: Added FontSmoothingMode.h.
  • WebCore.vcproj/WebCore.vcproj: Added FontSmoothingMode.h.
  • WebCore.xcodeproj/project.pbxproj: Added FontSmoothingMode.h and made

it a private header.

  • css/CSSComputedStyleDeclaration.cpp:

(WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue): Get the

font smoothing mode via the font description.

  • css/CSSPrimitiveValueMappings.h: Include FontSmoothingMode.h

(WebCore::CSSPrimitiveValue::CSSPrimitiveValue): Updated for the rename

of FontSmoothing to FontSmoothingMode.

(WebCore::CSSPrimitiveValue::operator FontSmoothingMode): Ditto.

  • css/CSSStyleSelector.cpp:

(WebCore::CSSStyleSelector::applyProperty): Get the font smoothing mode

via the font description.

  • platform/graphics/FontDescription.h: Do not include

RenderStyleConstants.h.

(WebCore::FontDescription::fontSmoothing): Updated for the rename of

FontSmoothing to FontSmoothingMode.

(WebCore::FontDescription::setFontSmoothing): Ditto.

  • platform/graphics/FontSmoothingMode.h: Added.

(WebCore::FontSmoothingMode): Moved the FontSmoothing enum from

RenderStyleConstants here and renamed it to this.

  • rendering/style/RenderStyle.h:

(WebCore::InheritedFlags::fontSmoothing): Removed this getter, since

this can be accessed via the font description.

  • rendering/style/RenderStyleConstants.h: Moved the FontSmoothing enum

from here to FontSmoothingMode.h.

10:32 AM Changeset in webkit [48473] by Adam Roben
  • 2 edits in trunk/WebKit/win

Fix a crash when a WebView's HWND is destroyed before IWebView::close is called

WebView's HWND was being sent a WM_TIMER message after the WebView was
destroyed. This normally isn't possible (we call DestroyWindow inside
WebView's destructor to ensure the HWND doesn't outlive the WebView),
but r48060 changed WebView to call SetParent(m_viewWindow,
HWND_MESSAGE) while handling WM_DESTROY, and apparently this puts the
HWND into some weird half-destroyed state where it can still receive
WM_TIMER messages.

Fixes <http://webkit.org/b/29337> <rdar://problem/7209897> REGRESSION
(r48060): unrepro but frequent crash in WebViewWndProc

Reviewed by Steve Falkenburg.

  • WebView.cpp:

(WebViewWndProc): When handling WM_DESTROY, call setIsBeingDestroyed()
before calling close(). This allows setHostWindow to detect that we're
handling WM_DESTROY. No other code in close() cared whether
isBeingDestroyed() was true or not.
(WebView::setHostWindow): If our host window is being set to 0 and
we're being destroyed, don't become a message-only window. Doing this
while handling WM_DESTROY seems to lead to crashes.

10:10 AM Changeset in webkit [48472] by kevino@webkit.org
  • 2 edits in trunk/WebCore

wx 2.9 build fix.

9:56 AM Changeset in webkit [48471] by Simon Fraser
  • 2 edits in trunk/WebKit/mac

2009-09-16 Simon Fraser <Simon Fraser>

Reviewed by Dan Bernstein.

Work around a bug in AppKit on Leopard which causes compositing layers to jitter, and
become misplaced when the WebHTMLView is resized or scrolled sometimes.
<rdar://problem/7071636>

The previous fix didn't fix the case where the layers jiggle when resizing the docked
inspector when the view size is over 2048px tall, on Leopard.

  • WebView/WebHTMLView.mm: (-[WebHTMLView _updateLayerHostingViewPosition]):
9:41 AM Changeset in webkit [48470] by Simon Fraser
  • 3 edits
    4 adds in trunk

2009-09-16 Simon Fraser <Simon Fraser>

Reviewed by Dan Bernstein.

Elements appear behind <video> when they should be in front sometimes
https://bugs.webkit.org/show_bug.cgi?id=29314

r45598 added logic that tests for overlap with <video> to determine when to throw
a layer into compositing mode. That logic was incorrect in some cases, and this patch
fixes it. When testing overlap, the layer needs to be composited iff some previous layer
is composited (which adds a rect to the overlay map), and there is overlap.

Test: compositing/geometry/video-opacity-overlay.html

  • rendering/RenderLayerCompositor.cpp: (WebCore::CompositingState::CompositingState): (WebCore::RenderLayerCompositor::computeCompositingRequirements):
8:52 AM Changeset in webkit [48469] by Dimitri Glazkov
  • 8 edits
    2 adds in trunk/WebCore

2009-09-17 Avi Drissman <avi@google.com>

Reviewed by Darin Fisher.

Update the Chromium Mac theming files (RenderTheme and Theme) to be
up-to-date.

https://bugs.webkit.org/show_bug.cgi?id=29243
http://crbug.com/19604

Covered by existing tests.

  • WebCore.gypi:
  • platform/chromium/ThemeChromiumMac.h: Added. (WebCore::ThemeChromiumMac::ThemeChromiumMac): (WebCore::ThemeChromiumMac::~ThemeChromiumMac): (WebCore::ThemeChromiumMac::controlRequiresPreWhiteSpace):
  • platform/chromium/ThemeChromiumMac.mm: Added. (WebCore::): (WebCore::platformTheme): (WebCore::controlSizeForFont): (WebCore::sizeFromFont): (WebCore::setControlSize): (WebCore::updateStates): (WebCore::inflateRect): (WebCore::checkboxSizes): (WebCore::checkboxMargins): (WebCore::checkboxSize): (WebCore::checkbox): (WebCore::paintCheckbox): (WebCore::radioSizes): (WebCore::radioMargins): (WebCore::radioSize): (WebCore::radio): (WebCore::paintRadio): (WebCore::buttonSizes): (WebCore::buttonMargins): (WebCore::button): (WebCore::paintButton): (WebCore::ThemeChromiumMac::baselinePositionAdjustment): (WebCore::ThemeChromiumMac::controlFont): (WebCore::ThemeChromiumMac::controlSize): (WebCore::ThemeChromiumMac::minimumControlSize): (WebCore::ThemeChromiumMac::controlBorder): (WebCore::ThemeChromiumMac::controlPadding): (WebCore::ThemeChromiumMac::inflateControlPaintRect): (WebCore::ThemeChromiumMac::paint):
  • platform/graphics/FloatPoint.h:
  • platform/graphics/FloatRect.h:
  • platform/graphics/FloatSize.h:
  • platform/graphics/IntRect.h:
  • rendering/RenderThemeChromiumMac.h: (WebCore::RenderThemeChromiumMac::supportsControlTints): (WebCore::RenderThemeChromiumMac::scrollbarControlSizeForPart): (WebCore::RenderThemeChromiumMac::supportsSelectionForegroundColors):
  • rendering/RenderThemeChromiumMac.mm: (-[WebCoreRenderThemeNotificationObserver systemColorsDidChange:]): (-[RTCMFlippedView isFlipped]): (-[RTCMFlippedView currentEditor]): (WebCore::): (WebCore::FlippedView): (WebCore::RenderTheme::themeForPage): (WebCore::RenderThemeChromiumMac::platformActiveListBoxSelectionForegroundColor): (WebCore::RenderThemeChromiumMac::platformInactiveListBoxSelectionForegroundColor): (WebCore::RenderThemeChromiumMac::platformInactiveListBoxSelectionBackgroundColor): (WebCore::RenderThemeChromiumMac::systemFont): (WebCore::convertNSColorToColor): (WebCore::menuBackgroundColor): (WebCore::RenderThemeChromiumMac::systemColor): (WebCore::RenderThemeChromiumMac::isControlStyled): (WebCore::RenderThemeChromiumMac::adjustRepaintRect): (WebCore::RenderThemeChromiumMac::inflateRect): (WebCore::RenderThemeChromiumMac::convertToPaintingRect): (WebCore::RenderThemeChromiumMac::setFontFromControlSize): (WebCore::RenderThemeChromiumMac::paintTextField): (WebCore::RenderThemeChromiumMac::paintCapsLockIndicator): (WebCore::RenderThemeChromiumMac::paintTextArea): (WebCore::RenderThemeChromiumMac::paintMenuList): (WebCore::TopGradientInterpolate): (WebCore::BottomGradientInterpolate): (WebCore::MainGradientInterpolate): (WebCore::TrackGradientInterpolate): (WebCore::RenderThemeChromiumMac::paintMenuListButtonGradients): (WebCore::RenderThemeChromiumMac::paintMenuListButton): (WebCore::RenderThemeChromiumMac::popupInternalPaddingLeft): (WebCore::RenderThemeChromiumMac::popupInternalPaddingRight): (WebCore::RenderThemeChromiumMac::popupInternalPaddingTop): (WebCore::RenderThemeChromiumMac::popupInternalPaddingBottom): (WebCore::RenderThemeChromiumMac::adjustMenuListButtonStyle): (WebCore::RenderThemeChromiumMac::adjustSliderTrackStyle): (WebCore::RenderThemeChromiumMac::adjustSliderThumbStyle): (WebCore::RenderThemeChromiumMac::paintSliderThumb): (WebCore::RenderThemeChromiumMac::paintSearchField): (WebCore::RenderThemeChromiumMac::setSearchCellState): (WebCore::RenderThemeChromiumMac::adjustSearchFieldStyle): (WebCore::RenderThemeChromiumMac::paintSearchFieldCancelButton): (WebCore::RenderThemeChromiumMac::adjustSearchFieldCancelButtonStyle): (WebCore::RenderThemeChromiumMac::adjustSearchFieldDecorationStyle): (WebCore::RenderThemeChromiumMac::paintSearchFieldDecoration): (WebCore::RenderThemeChromiumMac::adjustSearchFieldResultsDecorationStyle): (WebCore::RenderThemeChromiumMac::paintSearchFieldResultsDecoration): (WebCore::RenderThemeChromiumMac::adjustSearchFieldResultsButtonStyle): (WebCore::RenderThemeChromiumMac::paintSearchFieldResultsButton): (WebCore::mediaControllerTheme): (WebCore::RenderThemeChromiumMac::adjustSliderThumbSize): (WebCore::getMediaUIPartStateFlags): (WebCore::getUnzoomedRectAndAdjustCurrentContext): (WebCore::RenderThemeChromiumMac::paintMediaFullscreenButton): (WebCore::RenderThemeChromiumMac::paintMediaMuteButton): (WebCore::RenderThemeChromiumMac::paintMediaPlayButton): (WebCore::RenderThemeChromiumMac::paintMediaSeekBackButton): (WebCore::RenderThemeChromiumMac::paintMediaSeekForwardButton): (WebCore::RenderThemeChromiumMac::paintMediaSliderTrack): (WebCore::RenderThemeChromiumMac::paintMediaSliderThumb): (WebCore::RenderThemeChromiumMac::paintMediaRewindButton): (WebCore::RenderThemeChromiumMac::paintMediaReturnToRealtimeButton): (WebCore::RenderThemeChromiumMac::paintMediaControlsBackground): (WebCore::RenderThemeChromiumMac::paintMediaCurrentTime): (WebCore::RenderThemeChromiumMac::paintMediaTimeRemaining): (WebCore::RenderThemeChromiumMac::extraMediaControlsStyleSheet):
7:03 AM Changeset in webkit [48468] by kenneth@webkit.org
  • 2 edits in trunk/WebKit/qt

Improve documentation for Page Cache.

Patch by Kenneth Rohde Christiansen <kenneth@webkit.org> on 2009-09-17
Reviewed by Simon Hausmann.

  • Api/qwebsettings.cpp:
6:03 AM Changeset in webkit [48467] by zoltan@webkit.org
  • 1 add in trunk/LayoutTests/platform/qt/fast/css/font-smoothing-expected.txt

2009-09-17 Andras Becsi <becsi.andras@stud.u-szeged.hu>

Reviewed by Simon Hausmann.

[Qt] Add expected file for passing font-smoothing test and update computed style tests since font smoothing is auto by default.

  • platform/qt/fast/css/font-smoothing-expected.txt: Added.
6:01 AM Changeset in webkit [48466] by zoltan@webkit.org
  • 3 edits in trunk/LayoutTests

2009-09-17 Andras Becsi <becsi.andras@stud.u-szeged.hu>

Reviewed by Simon Hausmann.

[Qt] Add expected file for passing font-smoothing test and update computed style tests since font smoothing is auto by default.

  • platform/qt/fast/css/font-smoothing-expected.txt: Added.
  • platform/qt/fast/css/getComputedStyle/computed-style-expected.txt:
  • platform/qt/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
5:46 AM Changeset in webkit [48465] by vestbo@webkit.org
  • 3 edits in trunk/WebKit/qt

[Qt] Update QWebSettings::setUserStyleSheetUrl() docs and test

Reviewed by Simon Hausmann.

https://bugs.webkit.org/show_bug.cgi?id=29081

The documentation now specifies that the URL has to be a local file
or a a data-URL (with utf-8 and base64-encoded data), as these are the
only two schemes that the current code path accepts.

The auto-test has been updated to reflect this limitation.

At a later point we should concider adding API for the new way of
doing both user defined stylesheets and scripts.

  • Api/qwebsettings.cpp:
  • tests/qwebpage/tst_qwebpage.cpp:
4:51 AM Changeset in webkit [48464] by Simon Hausmann
  • 2 edits in trunk/LayoutTests

[Qt] Skip failing tests for now to prepare default font size reconciliation.

Patch by Andras Becsi <becsi.andras@stud.u-szeged.hu> on 2009-09-17
Reviewed by Simon Hausmann.

  • platform/qt/Skipped:
3:54 AM Changeset in webkit [48463] by Simon Hausmann
  • 2 edits in trunk/JavaScriptCore

Symbian/WINSCW build fox.

Patch by Janne Koskinen <janne.p.koskinen@digia.com> on 2009-09-17
Reviewed by Simon Hausmann.

Repeat Q_OS_WIN wchar_t hack for WINSCW, similar to
revision 24774.

WINSCW defines wchar_t, thus UChar has to be wchar_t

  • wtf/unicode/qt4/UnicodeQt4.h:
3:47 AM Changeset in webkit [48462] by Simon Hausmann
  • 2 edits in trunk/JavaScriptCore

Symbian/WINSCW build fix.

Patch by Janne Koskinen <janne.p.koskinen@digia.com> on 2009-09-17
Reviewed by Simon Hausmann.

https://bugs.webkit.org/show_bug.cgi?id=29186

WINSCW Template specialisation name in declaration must the be the same as in implementation.

  • runtime/LiteralParser.h:
3:44 AM Changeset in webkit [48461] by Simon Hausmann
  • 2 edits in trunk/JavaScriptCore

https://bugs.webkit.org/show_bug.cgi?id=27060

Patch by Norbert Leser <norbert.leser@nokia.com> on 2009-09-15
Reviewed by Darin Adler.

Symbian compiler for emulator target (WINSCW) fails with
"illegal operand" for m_attributesInPrevious in structure.ccp
(when calling make_pair functions).
This error is apparently due to the compiler not properly
resolving the unsigned type of the declared bitfield.

Initial patch explicitly casted m_attributesInPrevious
to unsigned, but since bitfield optimization is not critical for
the emulator target, this conditional change in header file
appears to be least intrusive.

  • runtime/Structure.h:
3:31 AM Changeset in webkit [48460] by Simon Hausmann
  • 4 edits in trunk/WebKit/qt

Symbian build fix.

Patch by Janne Koskinen <janne.p.koskinen@digia.com> on 2009-09-17
Reviewed by Simon Hausmann.

Moved the #ifdefs around _q_cleanupLeakMessages() into the function
definition.

QMake is not being able to distinguish between release and debug builds
in Symbian build. This is a Symbian toolchain issue.

  • Api/qwebpage.cpp:

(QWebPagePrivate::_q_cleanupLeakMessages):

  • Api/qwebpage.h:
  • Api/qwebpage_p.h:
3:20 AM Changeset in webkit [48459] by Simon Hausmann
  • 2 edits in trunk/WebKit/qt

Small cosmetic documentation fixlet in the QWebInspector.

Patch by Jocelyn Turcotte <jocelyn.turcotte@nokia.com> on 2009-09-17
Reviewed by Simon Hausmann.

  • Api/qwebinspector.cpp:

Sep 16, 2009:

11:45 PM Changeset in webkit [48458] by abarth@webkit.org
  • 3 edits
    2 adds in trunk

2009-09-16 Daniel Bates <dbates@webkit.org>

Reviewed by Darin Adler.

https://bugs.webkit.org/show_bug.cgi?id=29306

Tests that scripts with accented characters do not bypass the XSSAuditor.

  • http/tests/security/xssAuditor/img-onerror-accented-char-expected.txt: Added.
  • http/tests/security/xssAuditor/img-onerror-accented-char.html: Added.

2009-09-16 Daniel Bates <dbates@webkit.org>

Reviewed by Darin Adler.

https://bugs.webkit.org/show_bug.cgi?id=29306

Fixes an issue where an attack that contains accented characters can
bypass the XSSAuditor.

XSSAuditor::decodeURL used the wrong length for the input string.
When the input string was decoded, the decoded result was truncated.
Hence, XSSAuditor was comparing the source code of the script to the
truncated input parameters.

Test: http/tests/security/xssAuditor/img-onerror-accented-char.html

  • page/XSSAuditor.cpp: (WebCore::XSSAuditor::decodeURL):
11:42 PM Changeset in webkit [48457] by abarth@webkit.org
  • 5 edits in trunk/LayoutTests

2009-09-16 Adam Barth <abarth@webkit.org>

Unreviewed. Added new isolated world test to the skipped list.

  • platform/gtk/Skipped:
  • platform/mac/Skipped:
  • platform/qt/Skipped:
  • platform/win/Skipped:
11:36 PM Changeset in webkit [48456] by beidson@apple.com
  • 2 edits in trunk/WebCore

Explore allowing pages with unload handlers into the Page Cache
https://bugs.webkit.org/show_bug.cgi?id=29021

Reviewed by Sam Weinig.

No new tests. (All previous tests continue to pass)

  • loader/FrameLoader.cpp:

(WebCore::FrameLoader::stopLoading): If the document is in the page cache, don't fire the unload event.

11:25 PM Changeset in webkit [48455] by abarth@webkit.org
  • 6 edits
    4 adds in trunk

2009-09-16 Adam Barth <abarth@webkit.org>

Reviewed by Dimitri Glazkov.

[V8] Teach ScheduledAction::execute about isolated worlds
https://bugs.webkit.org/show_bug.cgi?id=27703

We now save a handle to the original context. We use that handle to
call the timeout in the right context / world.

Tests: http/tests/security/isolatedWorld/window-setTimeout-function.html

http/tests/security/isolatedWorld/window-setTimeout-string.html

  • bindings/v8/ScheduledAction.cpp: (WebCore::ScheduledAction::ScheduledAction): (WebCore::ScheduledAction::execute):
  • bindings/v8/ScheduledAction.h: (WebCore::ScheduledAction::ScheduledAction):
  • bindings/v8/custom/V8DOMWindowCustom.cpp: (WebCore::V8Custom::WindowSetTimeoutImpl):
  • bindings/v8/custom/V8WorkerContextCustom.cpp: (WebCore::SetTimeoutOrInterval):

2009-09-16 Adam Barth <abarth@webkit.org>

Reviewed by Dimitri Glazkov.

[V8] Teach ScheduledAction::execute about isolated worlds
https://bugs.webkit.org/show_bug.cgi?id=27703

Add test coverage for the interaction between setTimeout and isolated
worlds.

  • http/tests/security/isolatedWorld/window-setTimeout-function-expected.txt: Added.
  • http/tests/security/isolatedWorld/window-setTimeout-function.html: Added.
  • http/tests/security/isolatedWorld/window-setTimeout-string-expected.txt: Added.
  • http/tests/security/isolatedWorld/window-setTimeout-string.html: Added.
9:39 PM Changeset in webkit [48454] by weinig@apple.com
  • 2 edits in trunk/WebCore

Add some groups to the xcode project to make the bindings/js/ group
a little nicer.

Reviewed by Anders Carlsson.

  • WebCore.xcodeproj/project.pbxproj:
8:42 PM Changeset in webkit [48453] by weinig@apple.com
  • 20 edits in trunk/WebCore

Fix for https://bugs.webkit.org/show_bug.cgi?id=29320
JS callback objects should store the global object

Reviewed by Anders Carlsson.

This just changes the callback objects to store the global object instead
of the frame. A follow up patch will change them to store the 'current'
global object instead of the lexical or dynamic.

  • DerivedSources.make: Remove unused VoidCallback.
  • WebCore.xcodeproj/project.pbxproj: Ditto.
  • bindings/js/JSCustomPositionCallback.cpp:

(WebCore::JSCustomPositionCallback::JSCustomPositionCallback):
(WebCore::JSCustomPositionCallback::handleEvent):

  • bindings/js/JSCustomPositionCallback.h:

(WebCore::JSCustomPositionCallback::create):

  • bindings/js/JSCustomPositionErrorCallback.cpp:

(WebCore::JSCustomPositionErrorCallback::JSCustomPositionErrorCallback):
(WebCore::JSCustomPositionErrorCallback::handleEvent):

  • bindings/js/JSCustomPositionErrorCallback.h:

(WebCore::JSCustomPositionErrorCallback::create):

  • bindings/js/JSCustomSQLStatementCallback.cpp:

(WebCore::JSCustomSQLStatementCallback::JSCustomSQLStatementCallback):
(WebCore::JSCustomSQLStatementCallback::handleEvent):

  • bindings/js/JSCustomSQLStatementCallback.h:

(WebCore::JSCustomSQLStatementCallback::create):

  • bindings/js/JSCustomSQLStatementErrorCallback.cpp:

(WebCore::JSCustomSQLStatementErrorCallback::JSCustomSQLStatementErrorCallback):
(WebCore::JSCustomSQLStatementErrorCallback::handleEvent):

  • bindings/js/JSCustomSQLStatementErrorCallback.h:

(WebCore::JSCustomSQLStatementErrorCallback::create):

  • bindings/js/JSCustomSQLTransactionCallback.cpp:

(WebCore::JSCustomSQLTransactionCallback::Data::Data):
(WebCore::JSCustomSQLTransactionCallback::Data::globalObject):
(WebCore::JSCustomSQLTransactionCallback::JSCustomSQLTransactionCallback):
(WebCore::JSCustomSQLTransactionCallback::handleEvent):

  • bindings/js/JSCustomSQLTransactionCallback.h:

(WebCore::JSCustomSQLTransactionCallback::create):

  • bindings/js/JSCustomSQLTransactionErrorCallback.cpp:

(WebCore::JSCustomSQLTransactionErrorCallback::JSCustomSQLTransactionErrorCallback):
(WebCore::JSCustomSQLTransactionErrorCallback::handleEvent):

  • bindings/js/JSCustomSQLTransactionErrorCallback.h:

(WebCore::JSCustomSQLTransactionErrorCallback::create):

  • bindings/js/JSCustomVoidCallback.cpp:

(WebCore::JSCustomVoidCallback::JSCustomVoidCallback):
(WebCore::JSCustomVoidCallback::handleEvent):

  • bindings/js/JSCustomVoidCallback.h:

(WebCore::JSCustomVoidCallback::create):

  • bindings/js/JSDatabaseCustom.cpp:

(WebCore::JSDatabase::changeVersion):
(WebCore::createTransaction):
(WebCore::JSDatabase::transaction):
(WebCore::JSDatabase::readTransaction):

  • bindings/js/JSGeolocationCustom.cpp:

(WebCore::createPositionCallback):
(WebCore::createPositionErrorCallback):
(WebCore::JSGeolocation::getCurrentPosition):
(WebCore::JSGeolocation::watchPosition):

  • bindings/js/JSSQLTransactionCustom.cpp:

(WebCore::JSSQLTransaction::executeSql):

8:40 PM Changeset in webkit [48452] by mrowe@apple.com
  • 2 edits in trunk/WebKitTools

Split the SnowLeopard build across a few machines.

  • BuildSlaveSupport/build.webkit.org-config/config.json:
7:57 PM Changeset in webkit [48451] by kevino@webkit.org
  • 3 edits in trunk/WebKit/wx

wxPython bindings build fixes after recent changes.

7:33 PM Changeset in webkit [48450] by brettw@chromium.org
  • 5 edits in trunk/WebCore

Revert "2009-09-16 Albert J. Wong <ajwong@chromium.org>"
This change did not compile.

7:13 PM Changeset in webkit [48449] by eric@webkit.org
  • 15 edits
    2 adds
    12 deletes in trunk

2009-09-15 Kent Tamura <tkent@chromium.org>

Reviewed by Eric Seidel.

<input maxlength=> should restrict only values specified by users.
https://bugs.webkit.org/show_bug.cgi?id=21271

  • fast/forms/input-appearance-maxlength-expected.txt:
  • fast/forms/input-appearance-maxlength.html:
  • fast/forms/input-maxlength-expected.txt:
  • fast/forms/input-maxlength.html:
  • fast/forms/input-text-maxlength-expected.txt: Added.
  • fast/forms/input-text-maxlength.html:
  • fast/forms/input-text-paste-maxlength-expected.txt: Added.
  • fast/forms/input-text-paste-maxlength.html:
  • platform/mac-leopard/fast/forms/input-text-maxlength-expected.checksum: Removed.
  • platform/mac-leopard/fast/forms/input-text-maxlength-expected.png: Removed.
  • platform/mac-leopard/fast/forms/input-text-maxlength-expected.txt: Removed.
  • platform/mac-leopard/fast/forms/input-text-paste-maxlength-expected.checksum: Removed.
  • platform/mac-leopard/fast/forms/input-text-paste-maxlength-expected.png: Removed.
  • platform/mac-leopard/fast/forms/input-text-paste-maxlength-expected.txt: Removed.
  • platform/mac/fast/forms/input-text-maxlength-expected.txt: Removed.
  • platform/mac/fast/forms/input-text-paste-maxlength-expected.txt: Removed.
  • platform/qt/fast/forms/input-text-maxlength-expected.txt: Removed.
  • platform/qt/fast/forms/input-text-paste-maxlength-expected.txt: Removed.
  • platform/win/fast/forms/input-text-maxlength-expected.txt: Removed.
  • platform/win/fast/forms/input-text-paste-maxlength-expected.txt: Removed.

2009-09-15 Kent Tamura <tkent@chromium.org>

Reviewed by Eric Seidel.

<input maxlength=> should restrict only values specified by users.
https://bugs.webkit.org/show_bug.cgi?id=21271

  • dom/InputElement.cpp: (WebCore::InputElement::setValueFromRenderer): (WebCore::InputElement::sanitizeValue): (WebCore::InputElement::sanitizeUserInputValue): Rename from constrainValue(). (WebCore::InputElement::handleBeforeTextInsertedEvent): (WebCore::InputElement::updateValueIfNeeded):
  • dom/InputElement.h:
  • html/HTMLInputElement.cpp: (WebCore::HTMLInputElement::setInputType): (WebCore::HTMLInputElement::value): (WebCore::HTMLInputElement::setValue): (WebCore::HTMLInputElement::sanitizeValue):
  • html/HTMLInputElement.h:
  • rendering/RenderTextControlSingleLine.cpp: (WebCore::RenderTextControlSingleLine::subtreeHasChanged):
  • wml/WMLInputElement.cpp: (WebCore::WMLInputElement::constrainValue):
  • wml/WMLInputElement.h: (WebCore::WMLInputElement::sanitizeValue):
6:58 PM Changeset in webkit [48448] by eric@webkit.org
  • 5 edits in trunk/WebCore

2009-09-16 Enrica Casucci <enrica@apple.com>

Reviewed by Eric Seidel.

Reorganizing helper functions in htmlediting.h to group them by type of object they return/operate upon.
https://bugs.webkit.org/show_bug.cgi?id=29319

  • editing/IndentOutdentCommand.cpp: Removed implementation of isAtUnsplittableElement.
  • editing/IndentOutdentCommand.h: Removed member function isAtUnsplittableElement, because it was not class specific and belonged logically among the helper functions.
  • editing/htmlediting.cpp: (WebCore::isAtUnsplittableElement): added. The code was taken from IndentOutdentCommand.
  • editing/htmlediting.h: Reordered functions to group them by type of object returned or operate upon. Added comments. Added isAtUnsplittableElement declaration.
5:00 PM CommitQueue edited by eric@webkit.org
(diff)
4:27 PM Changeset in webkit [48447] by ggaren@apple.com
  • 3 edits
    2 adds in trunk

WebCore: Removed some vestigial and potentially crashy code that makes consolidating
event listeners hard.

Patch by Geoffrey Garen <ggaren@apple.com> on 2009-09-16
Reviewed by Sam Weinig and Anders Carlsson.

  • dom/Node.cpp:

(WebCore::Node::addEventListener): No need to limit when event listeners
can be added. Other EventTargets don't do this.

Also, check for null when accessing document(). Technically, the JS bindings
do this check for us, but let's not rely on that.

LayoutTests: Added a test for a potential crash when adding an event listener to a
doctype node.

Patch by Geoffrey Garen <ggaren@apple.com> on 2009-09-16
Reviewed by Sam Weinig.

  • fast/dom/doctype-event-listener-crash-expected.txt: Added.
  • fast/dom/doctype-event-listener-crash.html: Added.
4:25 PM Changeset in webkit [48446] by andersca@apple.com
  • 3 edits in trunk/WebCore

<rdar://problem/7155710>
HTML selects on windows cause containing window to become inactive when opened

Reviewed by Adam Roben.

Redo the way we handle events when a popup menu is shown, based on
http://blogs.msdn.com/oldnewthing/archive/2004/08/20/217684.aspx

Since a non-active window can't capture the mouse, we use the owning window
(the WebView) as the capture window. We then run a recursive message pump that
forwards all mouse and keyboard events to the popup menu.

  • platform/PopupMenu.h:
  • platform/win/PopupMenuWin.cpp:

(WebCore::PopupMenu::PopupMenu):
(WebCore::PopupMenu::show):
(WebCore::PopupMenu::hide):
(WebCore::PopupMenu::wndProc):

4:23 PM Changeset in webkit [48445] by eric@webkit.org
  • 3 edits in trunk/JavaScriptCore

2009-09-16 Gabor Loki <loki@inf.u-szeged.hu>

Reviewed by Darin Adler.

Fix GCC warnings on ARM_THUMB2 platform

  • assembler/ARMv7Assembler.h: (JSC::ARMThumbImmediate::countLeadingZerosPartial):
  • assembler/MacroAssemblerARMv7.h: (JSC::MacroAssemblerARMv7::branchTruncateDoubleToInt32): (JSC::MacroAssemblerARMv7::moveFixedWidthEncoding):
4:14 PM Changeset in webkit [48444] by eric@webkit.org
  • 2 edits in trunk/WebKit/qt

2009-09-16 Benjamin C Meyer <benjamin.meyer@torchmobile.com>

Reviewed by Eric Seidel.

Detect and add Windows7 properly to the user agent.

  • Api/qwebpage.cpp: (QWebPage::userAgentForUrl):
4:06 PM Changeset in webkit [48443] by mitz@apple.com
  • 2 edits in trunk/WebCore

Speculative fix for
<rdar://problem/6937089> Crashes at RenderWidget::destroy()

Reviewed by Ada Chan.

  • rendering/RenderWidget.cpp:

(WebCore::RenderWidget::destroy): Avoid calling renderArena() if node()
is null. Add two assertions that can help determine how this crash
happens (in particular, whether node() becomes null during destroy() or
it is null before destroy() is called).

3:17 PM Changeset in webkit [48442] by Beth Dakin
  • 2 edits in trunk/WebCore

Speculative build fix.

  • css/CSSStyleSelector.cpp:

(WebCore::CSSStyleSelector::applyProperty):

3:08 PM Changeset in webkit [48441] by Beth Dakin
  • 16 edits
    7 adds in trunk

WebCore: Fix for <rdar://problem/7083741> Implement a CSS extension to
adjust sub-pixel anti-aliasing for text
-and corresponding-
https://bugs.webkit.org/show_bug.cgi?id=29291

Reviewed by Darin Adler.

Added tests:

  • fast/css/font-smoothing.html: Added.
  • fast/css/parsing-webkit-font-smoothing.html: Added.

This patch adds a new CSS property called -webkit-font-smoothing
that accepts the following as valid input: auto | none |
antialiased | subpixel-antialiased

Return appropriate computed style for -webkit-font-smoothing

  • css/CSSComputedStyleDeclaration.cpp:

(WebCore::):
(WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue):

Add a case for CSSPropertyWebkitFontSmoothing, and accept valid
input.

  • css/CSSParser.cpp:

(WebCore::CSSParser::parseValue):

Add mappings for FontSmoothing to the right CSS values.

  • css/CSSPrimitiveValueMappings.h:

(WebCore::CSSPrimitiveValue::CSSPrimitiveValue):
(WebCore::CSSPrimitiveValue::operator FontSmoothing):

Add -webkit-font-smoothing

  • css/CSSPropertyNames.in:

Set fontSmoothing on the FontDescription.

  • css/CSSStyleSelector.cpp:

(WebCore::CSSStyleSelector::applyProperty):

Add antialiased and subpixel-antialiased as possible new CSS
values.

  • css/CSSValueKeywords.in:

Store the font smoothing CSS value in the FontDescription.

  • platform/graphics/FontDescription.h:

(WebCore::FontDescription::FontDescription):
(WebCore::FontDescription::fontSmoothing):
(WebCore::FontDescription::setFontSmoothing):
(WebCore::FontDescription::operator==):

Call setShouldAntialias() and setShouldUseSmoothing() appropriately
based on the CSS fontSmoothing() value.

  • platform/graphics/mac/FontMac.mm:

(WebCore::Font::drawGlyphs):

  • platform/graphics/win/FontCGWin.cpp:

(WebCore::Font::drawGlyphs):

New function fontSmoothing()

  • rendering/style/RenderStyle.h:

(WebCore::InheritedFlags::fontSmoothing):

New enum FontSmoothing.

  • rendering/style/RenderStyleConstants.h:

(WebCore::):

LayoutTests: Tests for <rdar://problem/7083741> Implement a CSS extension to
adjust sub-pixel anti-aliasing for text

Reviewed by Darin Adler.

New tests:

  • fast/css/font-smoothing.html: Added.
  • fast/css/parsing-webkit-font-smoothing-expected.txt: Added.
  • fast/css/parsing-webkit-font-smoothing.html: Added.
  • fast/css/resources/parsing-webkit-font-smoothing.js: Added.

(test):

  • platform/mac/fast/css/font-smoothing-expected.checksum: Added.
  • platform/mac/fast/css/font-smoothing-expected.png: Added.
  • platform/mac/fast/css/font-smoothing-expected.txt: Added.

These tests have updated results now that -webkit-font-smoothing is
reported with computed style.

  • platform/mac/fast/css/getComputedStyle/computed-style-expected.txt:
  • platform/mac/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
  • svg/css/getComputedStyle-basic-expected.txt:
2:52 PM Changeset in webkit [48440] by Adam Roben
  • 3 edits in trunk/WebKit/win

Add a UI delegate callback to let the delegate draw a WebView's background

Fixes <http://webkit.org/b/29315>.

Reviewed by Dave Hyatt.

  • Interfaces/IWebUIDelegatePrivate.idl: Added

IWebUIDelegatePrivate2::drawBackground.

  • WebView.cpp:

(WebView::paintIntoBackingStore): After clearing or filling with
white, let the delegate draw whatever background it wants. Also added
an assertion that the dirty rect is within our bounds.

2:47 PM Changeset in webkit [48439] by Adam Roben
  • 2 edits in trunk/WebKit/win

Prevent WebView from painting over sibling windows

Fixes <http://webkit.org/b/29300> <rdar://problem/7227960> WebView can
paint over sibling windows

Reviewed by Darin Adler.

  • WebView.cpp:

(WebView::initWithFrame): Create the WebView's HWND with the
WS_CLIPSIBLINGS style.

2:46 PM Changeset in webkit [48438] by ajwong@chromium.org
  • 5 edits in trunk/WebCore

2009-09-16 Albert J. Wong <ajwong@chromium.org>

Reviewed by David Levin.

Reimplement default media UI for Mac Chromium to match the style
of the Windows and Linux versions. Also breaks the dependency
on the internal wk* functions that were previously used to
render the media controller widgets.
https://bugs.webkit.org/show_bug.cgi?id=29161

No media layout tests are currently enabled in Mac Chromium, so
nothing needs rebaselineing, etc.

  • css/mediaControlsChromium.css:
  • rendering/RenderThemeChromiumMac.h:
  • rendering/RenderThemeChromiumMac.mm: (WebCore::mediaElementParent): (WebCore::RenderThemeChromiumMac::extraMediaControlsStyleSheet): (WebCore::mediaSliderThumbImage): (WebCore::mediaVolumeSliderThumbImage): (WebCore::RenderThemeChromiumMac::paintSliderTrack): (WebCore::RenderThemeChromiumMac::adjustSliderThumbSize): (WebCore::RenderThemeChromiumMac::paintMediaButtonInternal): (WebCore::RenderThemeChromiumMac::paintMediaPlayButton): (WebCore::RenderThemeChromiumMac::paintMediaMuteButton): (WebCore::RenderThemeChromiumMac::paintMediaSliderTrack): (WebCore::RenderThemeChromiumMac::paintMediaVolumeSliderTrack): (WebCore::RenderThemeChromiumMac::paintMediaSliderThumb): (WebCore::RenderThemeChromiumMac::paintMediaVolumeSliderThumb): (WebCore::RenderThemeChromiumMac::paintMediaControlsBackground):
  • rendering/RenderThemeChromiumSkia.cpp: (WebCore::RenderThemeChromiumSkia::adjustSliderThumbSize):
2:38 PM Changeset in webkit [48437] by eric@webkit.org
  • 4 edits in trunk/WebCore

2009-09-16 Yury Semikhatsky <yurys@chromium.org>

Reviewed by Timothy Hatcher.

Remove style property if empty string is entered.

https://bugs.webkit.org/show_bug.cgi?id=29163

  • inspector/front-end/ElementsTreeOutline.js: (WebInspector.ElementsTreeOutline.prototype._onmouseout): fixed null pointer exception
  • inspector/front-end/InjectedScript.js: (InjectedScript.applyStyleText): if styletext to apply is empty it will return an array to confirm the property removal
  • inspector/front-end/StylesSidebarPane.js: (WebInspector.StylePropertyTreeElement.prototype.): (WebInspector.StylePropertyTreeElement.prototype):
2:31 PM Changeset in webkit [48436] by eric@webkit.org
  • 3 edits
    5 adds in trunk

2009-09-16 Yury Semikhatsky <yurys@chromium.org>

Reviewed by Timothy Hatcher.

Added a test that checks that margin property shorthand has correct value
when there is background-repeat property in the style declaration.

https://bugs.webkit.org/show_bug.cgi?id=28973

  • fast/backgrounds/repeat/margin-shorthand-expected.txt: Added.
  • fast/backgrounds/repeat/margin-shorthand.html: Added.
  • fast/backgrounds/repeat/resources/TEMPLATE.html: Added.
  • fast/backgrounds/repeat/resources/margin-shorthand.css: Added.
  • fast/backgrounds/repeat/resources/margin-shorthand.js: Added. (iconMarginValue):

2009-09-16 Yury Semikhatsky <yurys@chromium.org>

Reviewed by Timothy Hatcher.

Always reset m_implicitShorthand to false after parsing
background-repeat style property otherwise properties
following after it may be erroneously marked as implicit.

https://bugs.webkit.org/show_bug.cgi?id=28972
https://bugs.webkit.org/show_bug.cgi?id=28973

Test: fast/backgrounds/repeat/margin-shorthand.html

  • css/CSSParser.cpp: (WebCore::CSSParser::parseValue):
2:05 PM Changeset in webkit [48435] by Simon Fraser
  • 2 edits in trunk/WebKit/mac

2009-09-16 Simon Fraser <Simon Fraser>

Reviewed by Oliver Hunt.

Work around a bug in AppKit on Leopard which causes compositing layers to jitter, and
become misplaced when the WebHTMLView is resized or scrolled sometimes.
<rdar://problem/7071636>

We call an internal AppKit method to make sure the layer geometry is updated correctly.

  • WebView/WebHTMLView.mm: (-[WebHTMLView _updateLayerHostingViewPosition]):
1:40 PM Changeset in webkit [48434] by kevino@webkit.org
  • 2 edits in trunk/WebKitTools

wx build fix to support monolithic builds on Windows.

1:36 PM Changeset in webkit [48433] by eric@webkit.org
  • 3 edits
    4 adds
    4 deletes in trunk

2009-09-16 Carol Szabo <carol.szabo@nokia.com>

Reviewed by Alexey Proskuryakov.

Incorrect behavior of XMLHttpRequest::getAllResponseHeaders and XMLHttpRequest::getResponseHeader in the
HEADERS_RECEIVED readyState.
https://bugs.webkit.org/show_bug.cgi?id=29121

  • http/tests/xmlhttprequest/getAllResponseHeaders-expected.txt: Copied from LayoutTests/http/tests/xmlhttprequest/xmlhttprequest-InvalidStateException-getAllRequestHeaders-expected.txt.
  • http/tests/xmlhttprequest/getAllResponseHeaders.html: Copied from LayoutTests/http/tests/xmlhttprequest/xmlhttprequest-InvalidStateException-getAllRequestHeaders.html.
  • http/tests/xmlhttprequest/getResponseHeader-expected.txt: Copied from LayoutTests/http/tests/xmlhttprequest/xmlhttprequest-InvalidStateException-getRequestHeader-expected.txt.
  • http/tests/xmlhttprequest/getResponseHeader.html: Copied from LayoutTests/http/tests/xmlhttprequest/xmlhttprequest-InvalidStateException-getRequestHeader.html.
  • http/tests/xmlhttprequest/xmlhttprequest-InvalidStateException-getAllRequestHeaders-expected.txt: Removed.
  • http/tests/xmlhttprequest/xmlhttprequest-InvalidStateException-getAllRequestHeaders.html: Removed.
  • http/tests/xmlhttprequest/xmlhttprequest-InvalidStateException-getRequestHeader-expected.txt: Removed.
  • http/tests/xmlhttprequest/xmlhttprequest-InvalidStateException-getRequestHeader.html: Removed. Modified xmlhttprequest-InvalidStateException-getAllRequestHeaders and xmlhttprequest-InvalidStateException-getRequestHeader to match the current spec and code behavior. Extended the first test to cover other aspects of the getAllResponseHeaders method and planning the same extension for the second test. The extension for the second test is to be submitted with the patch for bug 29140. Renamed the 2 tests to a shorter more accurate name, given their new intended scope.

2009-09-16 Carol Szabo <carol.szabo@nokia.com>

Reviewed by Alexey Proskuryakov.

Incorrect behavior of XMLHttpRequest::getAllResponseHeaders and
XMLHttpRequest::getResponseHeader in the
HEADERS_RECEIVED readyState.
https://bugs.webkit.org/show_bug.cgi?id=29121

Tests: http/tests/xmlhttprequest/getAllResponseHeaders.html

http/tests/xmlhttprequest/getResponseHeader.html

  • xml/XMLHttpRequest.cpp: (WebCore::XMLHttpRequest::getAllResponseHeaders): (WebCore::XMLHttpRequest::getResponseHeader): Changed the minimum valid state from LOADING to HEADERS_RECEIVED.
1:23 PM Changeset in webkit [48432] by eric@webkit.org
  • 2 edits in trunk/WebCore

2009-09-16 Vitaly Repeshko <vitalyr@chromium.org>

Reviewed by Dimitri Glazkov.

[V8] Fix style violation in V8AbstractEventListener.
https://bugs.webkit.org/show_bug.cgi?id=29303

  • bindings/v8/V8AbstractEventListener.h: (WebCore::V8AbstractEventListener::operator==):
1:16 PM Changeset in webkit [48431] by eric@webkit.org
  • 10 edits
    2 adds in trunk/WebCore

2009-09-16 Patrick Mueller <Patrick_Mueller@us.ibm.com>

Reviewed by Timothy Hatcher.

Add Watch Expression support to inspector
https://bugs.webkit.org/show_bug.cgi?id=27514

Manual test added.

  • English.lproj/localizedStrings.js:
  • WebCore.gypi:
  • WebCore.vcproj/WebCore.vcproj:
  • inspector/front-end/ConsoleView.js: (WebInspector.ConsoleView.prototype.completions): (WebInspector.ConsoleView.prototype.evalInInspectedWindow): (WebInspector.ConsoleView.prototype._enterKeyPressed):
  • inspector/front-end/ObjectPropertiesSection.js: (WebInspector.ObjectPropertiesSection.prototype.update.callback): (WebInspector.ObjectPropertiesSection.prototype.update): (WebInspector.ObjectPropertiesSection.prototype.updateProperties): (WebInspector.ObjectPropertiesSection.CompareProperties): (WebInspector.ObjectPropertyTreeElement.prototype.onpopulate.callback): (WebInspector.ObjectPropertyTreeElement.prototype.onpopulate): (WebInspector.ObjectPropertyTreeElement.prototype.update):
  • inspector/front-end/ScriptsPanel.js: (WebInspector.ScriptsPanel): (WebInspector.ScriptsPanel.prototype.reset): (WebInspector.ScriptsPanel.prototype._callFrameSelected):
  • inspector/front-end/WatchExpressionsSidebarPane.js: Added. (WebInspector.WatchExpressionsSidebarPane): (WebInspector.WatchExpressionsSidebarPane.prototype.refreshExpressions): (WebInspector.WatchExpressionsSection): (WebInspector.WatchExpressionsSection.prototype.update): (WebInspector.WatchExpressionsSection.prototype.addExpression): (WebInspector.WatchExpressionsSection.prototype.updateExpression): (WebInspector.WatchExpressionsSection.prototype.findAddedTreeElement): (WebInspector.WatchExpressionsSection.prototype.loadSavedExpressions): (WebInspector.WatchExpressionsSection.prototype.saveExpressions): (WebInspector.WatchExpressionsSection.CompareProperties): (WebInspector.WatchExpressionTreeElement): (WebInspector.WatchExpressionTreeElement.prototype.update): (WebInspector.WatchExpressionTreeElement.prototype._deleteButtonClicked): (WebInspector.WatchExpressionTreeElement.prototype.startEditing): (WebInspector.WatchExpressionTreeElement.prototype.editingCancelled): (WebInspector.WatchExpressionTreeElement.prototype.applyExpression):
  • inspector/front-end/WebKit.qrc:
  • inspector/front-end/inspector.css:
  • inspector/front-end/inspector.html:
  • manual-tests/inspector/debugger-watch-expressions.html: Added.
12:50 PM Changeset in webkit [48430] by bolsinga@apple.com
  • 46 edits
    1 add in trunk

Add ENABLE(INSPECTOR)
https://bugs.webkit.org/show_bug.cgi?id=29260

Reviewed by David Kilzer.

JavaScriptCore:

  • wtf/Platform.h:

WebCore:

No new tests. (No change in default behavior.)

  • DerivedSources.make: Use new WebCore.Inspector.exp file if ENABLE_DRAG_SUPPORT.
  • WebCore.base.exp: Move Inspector only exports to WebCore.Inspector.exp.
  • WebCore.xcodeproj/project.pbxproj: Add WebCore.Inspector.exp.
  • bindings/js/JSDOMWindowBase.cpp: Use ENABLE(INSPECTOR) where applicable.

(WebCore::JSDOMWindowBase::supportsProfiling):

  • bindings/js/JSInspectedObjectWrapper.cpp: Wrap entire file in ENABLE(INSPECTOR).
  • bindings/js/JSInspectorBackendCustom.cpp: Ditto.
  • bindings/js/JSInspectorCallbackWrapper.cpp: Ditto.
  • bindings/js/ScriptObject.cpp: Use ENABLE(INSPECTOR) where applicable.
  • bindings/js/ScriptObject.h: Ditto.
  • bindings/js/ScriptObjectQuarantine.cpp: Wrap entire file in ENABLE(INSPECTOR).
  • dom/Document.cpp: Use ENABLE(INSPECTOR) where applicable.

(WebCore::Document::recalcStyle):
(WebCore::Document::addMessage):
(WebCore::Document::resourceRetrievedByXMLHttpRequest):
(WebCore::Document::scriptImported):

  • dom/Document.h: Ditto.
  • dom/Node.cpp: Ditto.

(WebCore::Node::dispatchGenericEvent):

  • dom/ScriptExecutionContext.h: Ditto.

(WebCore::):

  • html/HTMLDocument.cpp: Ditto.

(WebCore::HTMLDocument::createTokenizer):

  • html/HTMLTokenizer.cpp: Ditto.

(WebCore::HTMLTokenizer::write):

  • inspector/ConsoleMessage.cpp: Ditto.

(WebCore::ConsoleMessage::ConsoleMessage):
(WebCore::ConsoleMessage::isEqual):

  • inspector/ConsoleMessage.h: Ditto.
  • inspector/DOMDispatchTimelineItem.cpp: Wrap entire file in ENABLE(INSPECTOR).
  • inspector/InspectorBackend.cpp: Ditto.
  • inspector/InspectorController.cpp: Ditto.
  • inspector/InspectorDOMAgent.cpp: Ditto.
  • inspector/InspectorDOMStorageResource.cpp: Ditto.
  • inspector/InspectorDatabaseResource.cpp: Ditto.
  • inspector/InspectorFrontend.cpp: Ditto.
  • inspector/InspectorResource.cpp: Ditto.
  • inspector/InspectorTimelineAgent.cpp: Ditto.
  • inspector/TimelineItem.cpp: Ditto.
  • loader/FrameLoader.cpp: Use ENABLE(INSPECTOR) where applicable.

(WebCore::FrameLoader::detachFromParent):
(WebCore::FrameLoader::continueLoadAfterNavigationPolicy):
(WebCore::FrameLoader::loadedResourceFromMemoryCache):
(WebCore::FrameLoader::dispatchWindowObjectAvailable):
(WebCore::FrameLoader::dispatchDidCommitLoad):
(WebCore::FrameLoader::dispatchAssignIdentifierToInitialRequest):
(WebCore::FrameLoader::dispatchWillSendRequest):
(WebCore::FrameLoader::dispatchDidReceiveResponse):
(WebCore::FrameLoader::dispatchDidReceiveContentLength):
(WebCore::FrameLoader::dispatchDidFinishLoading):

  • page/Chrome.cpp: Ditto.

(WebCore::Chrome::mouseDidMoveOverElement):

  • page/Console.cpp: Ditto.

(WebCore::Console::addMessage):
(WebCore::Console::count):
(WebCore::Console::profile):
(WebCore::Console::profileEnd):
(WebCore::Console::time):
(WebCore::Console::timeEnd):
(WebCore::Console::group):
(WebCore::Console::groupEnd):

  • page/ContextMenuController.cpp: Ditto.

(WebCore::ContextMenuController::handleContextMenuEvent):
(WebCore::ContextMenuController::contextMenuItemSelected):

  • page/DOMWindow.cpp: Ditto.

(WebCore::DOMWindow::sessionStorage):
(WebCore::DOMWindow::localStorage):

  • page/EventHandler.cpp: Ditto.

(WebCore::EventHandler::handleMousePressEvent):

  • page/FrameView.cpp: Ditto.

(WebCore::FrameView::layout):
(WebCore::FrameView::paintContents):

  • page/FrameView.h: Ditto.
  • page/Page.cpp: Ditto.

(WebCore::Page::Page):
(WebCore::Page::~Page):

  • page/Page.h: Ditto.
  • platform/ContextMenu.cpp: Ditto.

(WebCore::ContextMenu::checkOrEnableIfNeeded):

  • platform/ContextMenuItem.h: Ditto.

(WebCore::):

  • storage/Database.cpp: Ditto.

(WebCore::Database::openDatabase):

  • workers/WorkerContext.cpp: Ditto.

(WebCore::WorkerContext::importScripts):

  • xml/XMLHttpRequest.cpp: Ditto.

(WebCore::XMLHttpRequest::didFinishLoading):

12:40 PM Changeset in webkit [48429] by bolsinga@apple.com
  • 21 edits
    1 add in trunk

Add ENABLE(CONTEXT_MENUS)
https://bugs.webkit.org/show_bug.cgi?id=29225

Reviewed by David Kilzer.

JavaScriptCore:

  • wtf/Platform.h:

WebCore:

No new tests. (No change in default behavior.)

  • DerivedSources.make: Use new WebCore.ContextMenus.exp file if ENABLE_CONTEXT_MENUS.
  • WebCore.base.exp: Move ContextMenu only exports to WebCore.ContextMenus.exp.
  • WebCore.xcodeproj/project.pbxproj: Add WebCore.ContextMenus.exp.
  • dom/Node.cpp: Use ENABLE(CONTEXT_MENUS) where applicable.

(WebCore::Node::defaultEventHandler):

  • loader/EmptyClients.h: Ditto.
  • page/ContextMenuController.cpp: Wrap entire file in ENABLE(CONTEXT_MENUS).
  • page/EventHandler.cpp: Use ENABLE(CONTEXT_MENUS) where applicable.
  • page/EventHandler.h: Ditto.
  • page/Page.cpp: Ditto.

(WebCore::Page::Page):

  • page/Page.h: Ditto.
  • page/mac/EventHandlerMac.mm: Ditto.
  • page/mac/WebCoreViewFactory.h: Ditto.
  • platform/ContextMenu.cpp: Wrap entire file in ENABLE(CONTEXT_MENUS).
  • platform/LocalizedStrings.h: Use ENABLE(CONTEXT_MENUS) where applicable.
  • platform/mac/ContextMenuItemMac.mm: Wrap entire file in ENABLE(CONTEXT_MENUS).
  • platform/mac/ContextMenuMac.mm: Ditto.
  • platform/mac/LocalizedStringsMac.mm: Use ENABLE(CONTEXT_MENUS) where applicable.
  • svg/graphics/SVGImage.cpp: Ditto.

(WebCore::SVGImage::dataChanged):

12:37 PM Changeset in webkit [48428] by hyatt@apple.com
  • 4 edits in trunk/WebCore

Clean up invalidation for repainting. Hoist the dirty rect intersection test in ScrollViewMac up
into ScrollView so that all platforms do it.

Reviewed by Adam Roben.

Patch deferred repaints in FrameView::repaintContentRectangle to only add the visible portion of
the rectangle for repainting.

  • page/FrameView.cpp:

(WebCore::FrameView::repaintContentRectangle):

  • platform/ScrollView.cpp:

(WebCore::ScrollView::repaintContentRectangle):

  • platform/mac/ScrollViewMac.mm:

(WebCore::ScrollView::platformRepaintContentRectangle):

12:29 PM Changeset in webkit [48427] by eric@webkit.org
  • 3 edits in trunk/JavaScriptCore

2009-09-16 Benjamin C Meyer <benjamin.meyer@torchmobile.com>

Reviewed by Eric Seidel.

The webkit stdint and stdbool headers exists because
the compiler MSVC doesn't include them. The check
should not check for PLATFORM(WIN_OS) but for MSVC.

  • os-win32/stdbool.h:
  • os-win32/stdint.h:
12:10 PM Changeset in webkit [48426] by bolsinga@apple.com
  • 25 edits
    1 add in trunk

Add ENABLE(DRAG_SUPPORT)
https://bugs.webkit.org/show_bug.cgi?id=29233

Reviewed by David Kilzer.

JavaScriptCore:

  • wtf/Platform.h:

WebCore:

No new tests. (No change in default behavior.)

  • DerivedSources.make: Use new WebCore.DragSupport.exp file if ENABLE_DRAG_SUPPORT.
  • WebCore.base.exp: Move Drag Support only exports to WebCore.DragSupport.exp.
  • WebCore.xcodeproj/project.pbxproj: Add WebCore.DragSupport.exp.
  • dom/Clipboard.h: Use ENABLE(DRAG_SUPPORT) where applicable.
  • loader/EmptyClients.h: Ditto.
  • page/DragController.cpp: Wrap entire file in ENABLE(DRAG_SUPPORT).
  • page/EventHandler.cpp: Use ENABLE(DRAG_SUPPORT) where applicable.

(WebCore::EventHandler::EventHandler):
(WebCore::EventHandler::clear):
(WebCore::EventHandler::handleMousePressEvent):
(WebCore::EventHandler::handleMouseReleaseEvent):
(WebCore::EventHandler::handleMouseMoveEvent):

  • page/EventHandler.h: Ditto.
  • page/Page.cpp: Ditto.

(WebCore::Page::Page):

  • page/Page.h: Ditto.
  • page/mac/DragControllerMac.mm: Wrap entire file in ENABLE(DRAG_SUPPORT).
  • page/mac/EventHandlerMac.mm: Use ENABLE(DRAG_SUPPORT) where applicable.

(WebCore::EventHandler::passSubframeEventToSubframe):

  • platform/DragData.cpp: Wrap entire file in ENABLE(DRAG_SUPPORT).
  • platform/DragImage.cpp: Wrap entire file in ENABLE(DRAG_SUPPORT).
  • platform/mac/ClipboardMac.h: Use ENABLE(DRAG_SUPPORT) where applicable.
  • platform/mac/ClipboardMac.mm: Ditto.
  • platform/mac/DragDataMac.mm: Wrap entire file in ENABLE(DRAG_SUPPORT).
  • platform/mac/DragImageMac.mm: Wrap entire file in ENABLE(DRAG_SUPPORT).
  • rendering/RenderLayer.cpp: Use ENABLE(DRAG_SUPPORT) where applicable.

(WebCore::RenderLayer::autoscroll):

  • rendering/RenderObject.cpp: Ditto.
  • rendering/RenderObject.h: Ditto.
  • svg/graphics/SVGImage.cpp: Ditto.

(WebCore::SVGImage::dataChanged):

12:02 PM Changeset in webkit [48425] by kevino@webkit.org
  • 3 edits in trunk/WebCore

wxMSW build fix after adding support for high resolution times in Win.

10:55 AM Changeset in webkit [48424] by kevino@webkit.org
  • 2 edits in trunk/JavaScriptCore

waf build fix after flag was moved to correct place.

10:25 AM Changeset in webkit [48423] by kenneth@webkit.org
  • 2 edits in trunk/WebKit/qt

Rubberstamped by Kenneth Christiansen.

Patch by Andras Becsi <andrewbecsi@yahoo.co.uk> on 2009-09-16
[Qt] Build fix for previous changes.

  • QGVLauncher/main.cpp:

(MainView::flip):

9:59 AM Changeset in webkit [48422] by kevino@webkit.org
  • 3 edits in trunk/WebKitTools

wx build fix, improve debug support and 2.9 support on MSW.

9:11 AM Changeset in webkit [48421] by kenneth@webkit.org
  • 2 edits in trunk/WebKit/qt

Unreviewed potential Qt < 4.6 build fix.

Patch by Kenneth Rohde Christiansen <kenneth@webkit.org> on 2009-09-16

  • QGVLauncher/main.cpp:

(MainView::flip):

8:55 AM Changeset in webkit [48420] by kov@webkit.org
  • 2 edits in trunk/WebKitTools

2009-09-16 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk>

Blind try at fixing new test failure on Windows.

  • DumpRenderTree/win/FrameLoadDelegate.cpp: (FrameLoadDelegate::didReceiveTitle):
8:20 AM Changeset in webkit [48419] by kov@webkit.org
  • 2 edits in trunk/LayoutTests

2009-09-16 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk>

One more try at rebaselining the tests for those who dump frame
loader delegates.

  • http/tests/loading/redirect-with-no-location-crash-expected.txt:
7:29 AM Changeset in webkit [48418] by Dimitri Glazkov
  • 3 edits in trunk/WebCore

2009-09-16 Vitaly Repeshko <vitalyr@chromium.org>

Reviewed by Dimitri Glazkov.

[V8] Added operator==() to event listeners. This fixes V8 bindings
build broken in http://trac.webkit.org/changeset/48402.
https://bugs.webkit.org/show_bug.cgi?id=29298

  • bindings/v8/V8AbstractEventListener.cpp: (WebCore::V8AbstractEventListener::V8AbstractEventListener): Now uses JSEventListenerType.
  • bindings/v8/V8AbstractEventListener.h: (WebCore::V8AbstractEventListener::operator==): Only compares pointers since we create at most one wrapper for a JS object.
7:29 AM Changeset in webkit [48417] by kov@webkit.org
  • 2 edits
    1 copy
    3 adds in trunk/LayoutTests

2009-09-16 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk>

Unreviewed. Rebaseline for those who support dumping of frame
loader delegates, add specific expected result to GTK+

  • http/tests/loading/redirect-with-no-location-crash-expected.txt:
  • platform/gtk/http/tests/loading/redirect-with-no-location-crash-expected.txt: Copied from LayoutTests/http/tests/loading/redirect-with-no-location-crash-expected.txt.
6:49 AM Changeset in webkit [48416] by kenneth@webkit.org
  • 2 edits in trunk/WebKit/qt

Add a "Flip effect" to our GraphicsView based launcher.

Patch by Kenneth Rohde Christiansen <kenneth@webkit.org> on 2009-09-16
Reviewed by Simon Hausmann.

  • QGVLauncher/main.cpp:

(MainView::resizeEvent):
(MainView::flip):
(MainWindow::flip):
(MainWindow::buildUI):

6:46 AM Changeset in webkit [48415] by vestbo@webkit.org
  • 2 edits in trunk/JavaScriptCore

[Qt] Build fix for 64-bit Qt on Mac OS X

Reviewed by Simon Hausmann.

  • wtf/Platform.h: Use JSVALUE64 on DARWIN, not only on MAC
6:40 AM Changeset in webkit [48414] by zoltan@webkit.org
  • 2 edits in trunk/WebKit/qt

2009-09-16 Zoltan Herczeg <zherczeg@inf.u-szeged.hu>

Rubber-stamped by Simon Hausmann.

[Qt] Typo fix. Pass the window object to the Format
menu. In this way Qt can free its internal graphical
objects during exit.

  • QtLauncher/main.cpp: (MainWindow::setupUI):
6:37 AM Changeset in webkit [48413] by kov@webkit.org
  • 3 edits
    3 adds in trunk

WebCore:

2009-09-16 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk>

Reviewed by Xan Lopez.

[GTK] Crash when visiting http://flipper.googlelabs.com/
https://bugs.webkit.org/show_bug.cgi?id=29293

Check type for being null or empty before looking it up in the
hash of supported types.

Tested by http/tests/loading/redirect-with-no-location-crash.html

  • platform/graphics/gtk/MediaPlayerPrivateGStreamer.cpp: (WebCore::MediaPlayerPrivate::supportsType):

LayoutTests:

2009-09-16 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk>

Reviewed by Xan Lopez.

[GTK] Crash when visiting http://flipper.googlelabs.com/
https://bugs.webkit.org/show_bug.cgi?id=29293

  • http/tests/loading/redirect-with-no-location-crash.html: Added.
  • http/tests/loading/redirect-with-no-location-crash-expected.html: Added.
  • http/tests/loading/resources/redirect-with-no-location-crash.php: Added.
6:18 AM Changeset in webkit [48412] by zoltan@webkit.org
  • 2 edits in trunk/JavaScriptCore

2009-09-16 Zoltan Herczeg <zherczeg@inf.u-szeged.hu>

Reviewed by Simon Hausmann.

[Qt] Fix wtf/ThreadSpecific.h under Qt to free thread local objects.
https://bugs.webkit.org/show_bug.cgi?id=29295

This is an important fix when JavaScript workers are in use, since
unfreed ThreadGlobalDatas leak a big amount of memory (50-100k each).
QThreadStorage calls the destructor of a given object, which is the
ThreadSpecific::Data. Unlike pthread, Qt is object oriented, and does
not support the calling of a static utility function when the thread
is about to close. In this patch we call the ThreadSpecific::destroy()
utility function from the destructor of ThreadSpecific::Data. Moreover,
since Qt resets all thread local values to 0 before the calling of the
appropriate destructors, we set back the pointer to its original value.
This is necessary because the get() method of the ThreadSpecific
object may be called during the exuction of the destructor.

  • wtf/ThreadSpecific.h: (WTF::ThreadSpecific::Data::~Data): (WTF::::~ThreadSpecific): (WTF::::set): (WTF::::destroy):
4:50 AM Changeset in webkit [48411] by vestbo@webkit.org
  • 2 edits in trunk/WebKit/qt

[Qt] Build break fix on gcc ARM.

Patch by Jocelyn Turcotte <jocelyn.turcotte@nokia.com> on 2009-09-16
Reviewed by Tor Arne Vestbø.

  • Api/qwebgraphicsitem.cpp:

(QWebGraphicsItemPrivate::_q_doLoadProgress):

1:58 AM Changeset in webkit [48410] by Simon Hausmann
  • 2 edits in trunk/WebKit/qt

Fix a crash in QWebFrame::hasFocus() with a simple null pointer check
when the focused frame is null. We do the same check in other places
where we call kit().

Patch by Warwick Allison <warwick.allison@nokia.com> on 2009-09-16
Reviewed by Simon Hausmann.

  • Api/qwebframe.cpp:

(QWebFrame::hasFocus):

1:56 AM Changeset in webkit [48409] by Simon Hausmann
  • 2 edits in trunk/WebKit/qt

Fixed a typo found during translation.

Patch by Jure Repinc <jlp@holodeck1.com> on 2009-09-16
Reviewed by Simon Hausmann.

  • WebCoreSupport/FrameLoaderClientQt.cpp:

(WebCore::FrameLoaderClientQt::interruptForPolicyChangeError):

Note: See TracTimeline for information about the timeline view.