⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

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:
Note: See TracTimeline for information about the timeline view.