Timeline



Sep 23, 2009:

11:49 PM Changeset in webkit [48704] by ggaren@apple.com
  • 2 edits in trunk/WebCore

32-bit build fix: restore previous cast that I thought was unnecessary.

Patch by Geoffrey Garen <ggaren@apple.com> on 2009-09-23

  • xml/XMLHttpRequest.cpp:

(WebCore::XMLHttpRequest::didSendData):
(WebCore::XMLHttpRequest::didReceiveData):

11:39 PM Changeset in webkit [48703] by ggaren@apple.com
  • 2 edits in trunk/JavaScriptCore

A piece of my last patch that I forgot.

Patch by Geoffrey Garen <ggaren@apple.com> on 2009-09-23

  • wtf/HashCountedSet.h:

(WTF::::clear): Added HashCountedSet::clear.

11:10 PM Changeset in webkit [48702] by zoltan@webkit.org
  • 2 edits in trunk/JavaScriptCore

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

Reviewed by Gavin Barraclough.

Avoid clear_cache built-in function if DISABLE_BUILTIN_CLEAR_CACHE define is set
https://bugs.webkit.org/show_bug.cgi?id=28886

There are some GCC packages (for example GCC-2006q3 from CodeSourcery)
which contain clear_cache built-in function only for C while the C++
version of
clear_cache is missing on ARM architectures.

Fixed a small bug in the inline assembly of cacheFlush function on
ARM_TRADITIONAL.

  • jit/ExecutableAllocator.h: (JSC::ExecutableAllocator::cacheFlush):
10:53 PM Changeset in webkit [48701] by ggaren@apple.com
  • 131 edits
    6 adds
    1 delete in trunk

JavaScriptCore: Added the ability to swap vectors with inline capacities, so you can
store a vector with inline capacity in a hash table.

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

  • wtf/Vector.h:

(WTF::swap):
(WTF::VectorBuffer::swap):

WebCore: Bring a little sanity to this crazy EventTarget world of ours
https://bugs.webkit.org/show_bug.cgi?id=29701

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

Lots of EventTarget refactoring to achieve a single shared implementation
that fixes some of the performance and correctness bugs of the many individual
implementations, and makes reasoning about EventTargets and EventListeners
much easier.

The basic design is this:

  • EventTarget manages a set of EventListeners.
  • onXXX EventListener attributes forward to standard EventTarget APIs.
  • Since the onXXX code is repetitive, it is usually done with macros of the form DEFINE_ATTRIBUTE_EVENT_LISTENER(attributeName).
  • EventTarget provides a shared implementation of dispatchEvent, which subclasses with special event dispatch rules, like Node, override.
  • To support Node, which lazily instantiates its EventTarget data, EventTarget has no data members, and instead makes a virtual call to get its data from wherever its subclass chose to store it.


Code that used to call dispatchEvent, passing an ExceptionCode paratmeter,
even though no exception could be thrown, has been changed not to do so,
to improve clarity and performance.

Code that used to call a special dispatchXXXEvent function, which just
turned around and called dispatchEvent, has been changed to call
dispatchEvent, to improve clarity and performance.

  • WebCore.base.exp:
  • WebCore.xcodeproj/project.pbxproj: Another day in the life of a WebKit

engineer.

  • bindings/js/JSDOMBinding.cpp:

(WebCore::isObservableThroughDOM): Updated for Node API change. Added
"is not in the document but is firing event listeners" as a condition
that makes a Node observable in the DOM, so that event listeners firing
on removed nodes are not destroyed midstream. (This was a long-standing
bug that was somewhat hidden by the old implementation's habit of
copying the RegisteredEventListener vector before firing events, which
would keep almost all the relevant objects from being destroyed.)

  • bindings/js/JSEventListener.cpp:

(WebCore::JSEventListener::handleEvent): Removed the isWindowEvent flag
because it was one of the most elaborately planned no-ops in the history
of software crime, and one of the reasons clients thought they needed more
than one dispatchEvent function even though they didn't.

  • bindings/js/JSEventListener.h:
  • bindings/js/JSDOMWindowCustom.cpp:

(WebCore::JSDOMWindow::markChildren):
(WebCore::JSMessagePort::markChildren):

  • bindings/js/JSNodeCustom.cpp:

(WebCore::JSNode::markChildren):

  • bindings/js/JSAbstractWorkerCustom.cpp:
  • bindings/js/JSDOMApplicationCacheCustom.cpp:
  • bindings/js/JSDedicatedWorkerContextCustom.cpp:
  • bindings/js/JSEventSourceCustom.cpp:
  • bindings/js/JSMessagePortCustom.cpp:
  • bindings/js/JSSharedWorkerContextCustom.cpp: Removed.
  • bindings/js/JSWebSocketCustom.cpp:
  • bindings/js/JSWorkerContextCustom.cpp:

(WebCore::JSWorkerContext::markChildren):

  • bindings/js/JSWorkerCustom.cpp:
  • bindings/js/JSXMLHttpRequestCustom.cpp:

(WebCore::JSXMLHttpRequest::markChildren):

  • bindings/js/JSXMLHttpRequestUploadCustom.cpp:

(WebCore::JSXMLHttpRequestUpload::markChildren): EventListener marking is
now autogenerated. Classes that still have custom mark functions for other
reasons now call a shared EventTarget API to mark their EventListeners.

  • bindings/objc/ObjCEventListener.h:
  • bindings/objc/ObjCEventListener.mm:

(WebCore::ObjCEventListener::handleEvent): Bye bye isWindowEvent.

  • bindings/scripts/CodeGeneratorJS.pm: Autogeneration support for

marking and invalidating event listeners.

  • dom/CharacterData.cpp:

(WebCore::CharacterData::dispatchModifiedEvent):

  • dom/ContainerNode.cpp:

(WebCore::ContainerNode::insertBefore):
(WebCore::ContainerNode::replaceChild):
(WebCore::willRemoveChild):
(WebCore::ContainerNode::appendChild):
(WebCore::dispatchChildInsertionEvents):
(WebCore::dispatchChildRemovalEvents):

  • dom/Document.cpp:

(WebCore::Document::removeAllEventListeners):
(WebCore::Document::implicitClose):
(WebCore::Document::setFocusedNode):
(WebCore::Document::dispatchWindowEvent):
(WebCore::Document::dispatchWindowLoadEvent):
(WebCore::Document::finishedParsing):

  • dom/Document.h: Use dispatchEvent directly.
  • dom/Element.h: Moved a few event listener attributes down from Node,

since they don't apply to all Nodes, only Elements.

  • dom/EventListener.h: Removed isWindowEvent parameter.
  • dom/EventNames.h: Added the "display" event name, so it works correctly

with attribute macros, and for performance.

  • dom/EventTarget.cpp:

(WebCore::forbidEventDispatch):
(WebCore::allowEventDispatch):
(WebCore::eventDispatchForbidden): Made this code (embarrasingly) thread
safe, since it's now called on multiple threads. (Currently, we only forbid
event dispatch on the main thread. If we ever want to forbid event dispatch
on secondary threads, we can improve it then.)

(WebCore::EventTarget::addEventListener):
(WebCore::EventTarget::removeEventListener):
(WebCore::EventTarget::setAttributeEventListener):
(WebCore::EventTarget::getAttributeEventListener):
(WebCore::EventTarget::clearAttributeEventListener):
(WebCore::EventTarget::dispatchEvent):
(WebCore::EventTarget::fireEventListeners):
(WebCore::EventTarget::getEventListeners):
(WebCore::EventTarget::removeAllEventListeners):

  • dom/EventTarget.h:

(WebCore::FiringEventEndIterator::FiringEventEndIterator):
(WebCore::EventTarget::ref):
(WebCore::EventTarget::deref):
(WebCore::EventTarget::markEventListeners):
(WebCore::EventTarget::invalidateEventListeners):
(WebCore::EventTarget::isFiringEventListeners):
(WebCore::EventTarget::hasEventListeners): The ONE TRUE IMPLEMENTATION of
EventTarget APIs, crafted from an amalgam of all the different versions
we used to have. The most significant change here is that we no longer
make a copy of an EventListener vector before firing the events in the
vector -- instead, we use a reference to the original vector, along with
a notification mechanism for the unlikely case when an EventListener is
removed from the vector. This substantially reduces malloc, copying, and
refcount overhead, and complexity.

  • dom/InputElement.cpp:

(WebCore::InputElement::setValueFromRenderer):

  • dom/MessageEvent.h:

(WebCore::MessageEvent::create): Use dispatchEvent directly.

  • dom/MessagePort.cpp:

(WebCore::MessagePort::dispatchMessages):
(WebCore::MessagePort::eventTargetData):
(WebCore::MessagePort::ensureEventTargetData):

  • dom/MessagePort.h:

(WebCore::MessagePort::setOnmessage):
(WebCore::MessagePort::onmessage):

  • dom/MessagePort.idl: Removed custom EventTarget implementation.
  • dom/MutationEvent.h:

(WebCore::MutationEvent::create): Added some default values so callers
can construct MutationEvents more easily, without calling a custom dispatch
function.

  • dom/Node.cpp:

(WebCore::Node::addEventListener):
(WebCore::Node::removeEventListener):
(WebCore::Node::eventTargetData):
(WebCore::Node::ensureEventTargetData):
(WebCore::Node::handleLocalEvents):
(WebCore::Node::dispatchEvent):
(WebCore::Node::dispatchGenericEvent):
(WebCore::Node::dispatchSubtreeModifiedEvent):
(WebCore::Node::dispatchUIEvent):
(WebCore::Node::dispatchKeyEvent):
(WebCore::Node::dispatchMouseEvent):
(WebCore::Node::dispatchWheelEvent):
(WebCore::Node::dispatchFocusEvent):
(WebCore::Node::dispatchBlurEvent):

  • dom/Node.h:

(WebCore::Node::preDispatchEventHandler):
(WebCore::Node::postDispatchEventHandler):

  • dom/Node.idl:
  • dom/NodeRareData.h:

(WebCore::NodeRareData::eventTargetData):
(WebCore::NodeRareData::ensureEventTargetData): Use the shared EventTarget
interface, and call dispatchEvent directly instead of custom dispatchXXXEvent
functions that just forwarded to dispatchEvent.

  • dom/RegisteredEventListener.cpp:
  • dom/RegisteredEventListener.h:

(WebCore::RegisteredEventListener::RegisteredEventListener):
(WebCore::operator==): This is just a simple struct now, since we no longer
do a complicated copy / refCount / isRemoved dance just to honor the rule
that an EventListener can be removed during event dispatch.

  • history/CachedFrame.cpp:

(WebCore::CachedFrameBase::restore): Removed another custom dispatchEvent.

  • html/HTMLBodyElement.cpp:
  • html/HTMLBodyElement.h: Use the shared EventTarget API.
  • html/HTMLFormControlElement.cpp:

(WebCore::HTMLFormControlElement::dispatchFormControlChangeEvent):
(WebCore::HTMLFormControlElement::checkValidity):

  • html/HTMLFormElement.cpp:

(WebCore::HTMLFormElement::handleLocalEvents):
(WebCore::HTMLFormElement::prepareSubmit):
(WebCore::HTMLFormElement::reset):

  • html/HTMLFormElement.h: Use the standard dispatchEvent API.
  • html/HTMLFrameSetElement.cpp:
  • html/HTMLFrameSetElement.h: Use the shared EventTarget API.
  • html/HTMLImageLoader.cpp:

(WebCore::HTMLImageLoader::dispatchLoadEvent):

  • html/HTMLInputElement.cpp:

(WebCore::HTMLInputElement::onSearch):

  • html/HTMLMediaElement.cpp:

(WebCore::HTMLMediaElement::loadInternal):

  • html/HTMLScriptElement.cpp:

(WebCore::HTMLScriptElement::dispatchLoadEvent):
(WebCore::HTMLScriptElement::dispatchErrorEvent):

  • html/HTMLSourceElement.cpp:

(WebCore::HTMLSourceElement::errorEventTimerFired):

  • html/HTMLTokenizer.cpp:

(WebCore::HTMLTokenizer::notifyFinished): Use the standard dispatchEvent API.

  • inspector/InspectorDOMAgent.cpp:

(WebCore::InspectorDOMAgent::handleEvent):

  • inspector/InspectorDOMAgent.h:
  • inspector/InspectorDOMStorageResource.cpp:

(WebCore::InspectorDOMStorageResource::handleEvent):

  • inspector/InspectorDOMStorageResource.h:
  • loader/FrameLoader.cpp:

(WebCore::FrameLoader::stopLoading):
(WebCore::FrameLoader::canCachePageContainingThisFrame):
(WebCore::FrameLoader::logCanCacheFrameDecision):
(WebCore::HashChangeEventTask::performTask):
(WebCore::FrameLoader::pageHidden): No more isWindowEvent.

  • loader/ImageDocument.cpp:

(WebCore::ImageEventListener::handleEvent):

  • loader/appcache/ApplicationCacheGroup.cpp:

(WebCore::CallCacheListenerTask::performTask):

  • loader/appcache/ApplicationCacheHost.cpp:

(WebCore::ApplicationCacheHost::notifyDOMApplicationCache):

  • loader/appcache/ApplicationCacheHost.h:
  • loader/appcache/DOMApplicationCache.cpp:

(WebCore::DOMApplicationCache::eventTargetData):
(WebCore::DOMApplicationCache::ensureEventTargetData):

  • loader/appcache/DOMApplicationCache.h:
  • loader/appcache/DOMApplicationCache.idl: Switched to the standard

EventTarget API. As a part of this, I switched this class from using a
custom internal event name enumeration to using the standard EventNames.

  • notifications/Notification.cpp:

(WebCore::Notification::eventTargetData):
(WebCore::Notification::ensureEventTargetData):

  • notifications/Notification.h:

(WebCore::Notification::scriptExecutionContext):

  • notifications/Notification.idl: Switched to the standard EventTarget API.
  • page/DOMWindow.cpp:

(WebCore::PostMessageTimer::event):
(WebCore::windowsWithUnloadEventListeners):
(WebCore::windowsWithBeforeUnloadEventListeners):
(WebCore::allowsBeforeUnloadListeners):
(WebCore::DOMWindow::dispatchAllPendingBeforeUnloadEvents):
(WebCore::DOMWindow::pendingUnloadEventListeners):
(WebCore::DOMWindow::dispatchAllPendingUnloadEvents): Changed the "pending"
unload / beforeunload listener tracker just to track which windows had
such listeners, instead of actually keeping a copy of the listeners. Now,
this code can use the standard EventTarget API.

(WebCore::DOMWindow::~DOMWindow):
(WebCore::DOMWindow::postMessageTimerFired):
(WebCore::DOMWindow::addEventListener):
(WebCore::DOMWindow::removeEventListener):
(WebCore::DOMWindow::dispatchLoadEvent):
(WebCore::DOMWindow::dispatchEvent):
(WebCore::DOMWindow::removeAllEventListeners):
(WebCore::DOMWindow::captureEvents):
(WebCore::DOMWindow::releaseEvents):
(WebCore::DOMWindow::eventTargetData):
(WebCore::DOMWindow::ensureEventTargetData):

  • page/DOMWindow.h:
  • page/DOMWindow.idl: Use the standard EventTarget APIs.
  • page/EventHandler.cpp:

(WebCore::EventHandler::canMouseDownStartSelect):
(WebCore::EventHandler::canMouseDragExtendSelect):
(WebCore::EventHandler::sendResizeEvent):
(WebCore::EventHandler::sendScrollEvent): Use dispatchEvent directly.

  • page/EventSource.cpp:

(WebCore::EventSource::endRequest):
(WebCore::EventSource::didReceiveResponse):
(WebCore::EventSource::parseEventStreamLine):
(WebCore::EventSource::stop):
(WebCore::EventSource::createMessageEvent):
(WebCore::EventSource::eventTargetData):
(WebCore::EventSource::ensureEventTargetData):

  • page/EventSource.h:
  • page/EventSource.idl: Use the standard EventTarget APIs.
  • page/FocusController.cpp:

(WebCore::dispatchEventsOnWindowAndFocusedNode):
(WebCore::FocusController::setFocusedFrame):

  • page/Frame.cpp:

(WebCore::Frame::shouldClose):

  • page/Frame.h:
  • page/Page.cpp:

(WebCore::networkStateChanged):

  • page/animation/AnimationController.cpp:

(WebCore::AnimationControllerPrivate::updateStyleIfNeededDispatcherFired):

  • rendering/RenderListBox.cpp:

(WebCore::RenderListBox::valueChanged):

  • rendering/RenderTextControl.cpp:

(WebCore::RenderTextControl::selectionChanged):

  • rendering/RenderTextControlMultiLine.cpp:

(WebCore::RenderTextControlMultiLine::subtreeHasChanged): Use dispatchEvent.

  • svg/SVGElement.cpp:

(WebCore::hasLoadListener): Rewritten for new EventTarget API.

  • svg/SVGElementInstance.cpp:

(WebCore::dummyEventTargetData):
(WebCore::SVGElementInstance::addEventListener):
(WebCore::SVGElementInstance::removeEventListener):
(WebCore::SVGElementInstance::removeAllEventListeners):
(WebCore::SVGElementInstance::dispatchEvent):
(WebCore::SVGElementInstance::eventTargetData):
(WebCore::SVGElementInstance::ensureEventTargetData): Use the EventTarget API.

  • svg/SVGElementInstance.h:
  • svg/SVGImageLoader.cpp:

(WebCore::SVGImageLoader::dispatchLoadEvent):

  • svg/SVGScriptElement.cpp:

(WebCore::SVGScriptElement::dispatchErrorEvent): Use dispatchEvent directly.

  • svg/SVGUseElement.cpp:

(WebCore::SVGUseElement::transferEventListenersToShadowTree): Updated for
new EventTarget API.

  • svg/animation/SVGSMILElement.cpp:

(WebCore::ConditionEventListener::handleEvent): No more isWindowEvent.

  • websockets/WebSocket.cpp:

(WebCore::ProcessWebSocketEventTask::create):
(WebCore::ProcessWebSocketEventTask::performTask):
(WebCore::ProcessWebSocketEventTask::ProcessWebSocketEventTask):
(WebCore::WebSocket::didConnect):
(WebCore::WebSocket::didReceiveMessage):
(WebCore::WebSocket::didClose):
(WebCore::WebSocket::eventTargetData):
(WebCore::WebSocket::ensureEventTargetData):

  • websockets/WebSocket.h:
  • websockets/WebSocket.idl:
  • workers/AbstractWorker.cpp:

(WebCore::AbstractWorker::eventTargetData):
(WebCore::AbstractWorker::ensureEventTargetData):

  • workers/AbstractWorker.h:
  • workers/AbstractWorker.idl:
  • workers/DedicatedWorkerContext.cpp:
  • workers/DedicatedWorkerContext.h:
  • workers/DedicatedWorkerContext.idl:
  • workers/DefaultSharedWorkerRepository.cpp:

(WebCore::SharedWorkerConnectTask::performTask):
(WebCore::SharedWorkerScriptLoader::load):
(WebCore::SharedWorkerScriptLoader::notifyFinished):

  • workers/SharedWorker.idl:
  • workers/SharedWorkerContext.cpp:

(WebCore::createConnectEvent):

  • workers/SharedWorkerContext.h:
  • workers/SharedWorkerContext.idl:
  • workers/Worker.cpp:

(WebCore::Worker::notifyFinished):

  • workers/Worker.h:
  • workers/Worker.idl:
  • workers/WorkerContext.cpp:

(WebCore::WorkerContext::eventTargetData):
(WebCore::WorkerContext::ensureEventTargetData):

  • workers/WorkerContext.h:
  • workers/WorkerContext.idl:
  • workers/WorkerMessagingProxy.cpp:

(WebCore::MessageWorkerContextTask::performTask):
(WebCore::MessageWorkerTask::performTask):
(WebCore::WorkerExceptionTask::performTask):

  • xml/XMLHttpRequest.cpp:

(WebCore::XMLHttpRequest::callReadyStateChangeListener):
(WebCore::XMLHttpRequest::createRequest):
(WebCore::XMLHttpRequest::abort):
(WebCore::XMLHttpRequest::networkError):
(WebCore::XMLHttpRequest::abortError):
(WebCore::XMLHttpRequest::didSendData):
(WebCore::XMLHttpRequest::didReceiveData):
(WebCore::XMLHttpRequest::eventTargetData):
(WebCore::XMLHttpRequest::ensureEventTargetData):

  • xml/XMLHttpRequest.h:
  • xml/XMLHttpRequest.idl:
  • xml/XMLHttpRequestProgressEvent.h:

(WebCore::XMLHttpRequestProgressEvent::create):

  • xml/XMLHttpRequestUpload.cpp:

(WebCore::XMLHttpRequestUpload::eventTargetData):
(WebCore::XMLHttpRequestUpload::ensureEventTargetData):

  • xml/XMLHttpRequestUpload.h:
  • xml/XMLHttpRequestUpload.idl: Use new EventTarget API.

WebKit/mac: Updated for a WebCore rename.

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

  • WebView/WebFrame.mm:

(-[WebFrame _cacheabilityDictionary]):

LayoutTests: Layout tests for event target sanitization.

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

New tests for event dispatch:

  • fast/events/event-attributes-after-exception-expected.txt: Added.
  • fast/events/event-attributes-after-exception.html: Added.
  • fast/events/event-fire-order-expected.txt: Added.
  • fast/events/event-fire-order.html: Added.
  • fast/events/event-fired-after-removal-expected.txt: Added.
  • fast/events/event-fired-after-removal.html: Added.


Fixed these tests:

  • fast/xmlhttprequest/xmlhttprequest-get-expected.txt: eventPhase should

be AT_TARGET (2) when firing an event on an XHR, not INVALID (0).

  • http/tests/xmlhttprequest/infoOnProgressEvent-expected.txt: ditto
  • http/tests/xmlhttprequest/event-target-expected.txt:
  • http/tests/xmlhttprequest/event-target.html: Removing an event listener

during event dispatch should prevent it from firing. (This test was backwards.)

  • svg/custom/loadevents-capturing.svg: Enhanced this test to tell you

why it fails when it fails. Changed it to register runTest() (now named
reportResults()) using addEventListener() instead of the 'onload' attribute.
The test relies on reportResults() running after handler(), so it needs
to register reportResults() after handler().

10:00 PM Changeset in webkit [48700] by ddkilzer@apple.com
  • 3 edits
    2 adds in trunk/WebKitTools

<http://webkit.org/b/28910> Move bugzilla-tool mark-fixed to standalone mark-bug-fixed tool

Reviewed by Darin Adler.

Also fixed a bug where specifying a revision on the command-line
as 'r12345' would fail. See <http://webkit.org/b/29699>.

  • Scripts/bugzilla-tool: Updated module import statements. (parse_bug_id): Removed. Moved to bugzilla.py. (bug_comment_from_svn_revision): Removed. Moved to comments.py. (bug_comment_from_commit_text): Removed. Moved to comments.py. (MarkBugFixed): Removed. Code moved to mark-bug-fixed. (BugzillaTool.init): Removed mark-fixed subcommand.
  • Scripts/mark-bug-fixed: Added.
  • Scripts/modules/bugzilla.py: (parse_bug_id): Added. Moved from bugzilla-tool.
  • Scripts/modules/comments.py: Added. (bug_comment_from_svn_revision): Added. Moved from bugzilla-tool. (bug_comment_from_commit_text): Added. Moved from bugzilla-tool.
8:02 PM Changeset in webkit [48699] by eric@webkit.org
  • 1 edit
    4 adds in trunk/LayoutTests

2009-09-23 Karen Grünberg <karen+webkit@chromium.org>

Reviewed by Eric Seidel.

This tests all types of inputs text and password,
both enabled and disabled, the existing tests
weren't thorough enough for chromium.

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

  • fast/forms/basic-inputs.html: Added.
  • platform/mac/fast/forms/basic-inputs-expected.checksum: Added.
  • platform/mac/fast/forms/basic-inputs-expected.png: Added.
  • platform/mac/fast/forms/basic-inputs-expected.txt: Added.
7:55 PM Changeset in webkit [48698] by eric@webkit.org
  • 8 edits
    3 adds in trunk

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

Reviewed by Darin Adler.

Tests for maxLength of <textarea>
https://bugs.webkit.org/show_bug.cgi?id=29292

  • fast/forms/script-tests/textarea-maxlength.js: Added.
  • fast/forms/textarea-maxlength-expected.txt: Added.
  • fast/forms/textarea-maxlength.html: Added.

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

Reviewed by Darin Adler.

Test: fast/forms/textarea-maxlength.html

  • dom/InputElement.cpp: (WebCore::InputElement::sanitizeUserInputValue): (WebCore::InputElement::handleBeforeTextInsertedEvent):
  • html/HTMLTextAreaElement.cpp: (WebCore::HTMLTextAreaElement::defaultEventHandler): (WebCore::HTMLTextAreaElement::handleBeforeTextInsertedEvent): (WebCore::HTMLTextAreaElement::sanitizeUserInputValue): (WebCore::HTMLTextAreaElement::maxLength): (WebCore::HTMLTextAreaElement::setMaxLength):
  • html/HTMLTextAreaElement.h:
  • html/HTMLTextAreaElement.idl:
  • platform/text/PlatformString.h:
  • platform/text/String.cpp: (WebCore::String::numGraphemeClusters): (WebCore::String::numCharactersInGraphemeClusters):
7:44 PM Changeset in webkit [48697] by eric@webkit.org
  • 6 edits in trunk

2009-09-23 Martin Robinson <martin.james.robinson@gmail.com>

Reviewed by Xan Lopez.

[GTK] REGRESSION: BitmapImage::getGdkPixbuf fails for non-square images
https://bugs.webkit.org/show_bug.cgi?id=29654

Enable tests which are now passing because of key event fixes.

  • platform/gtk/Skipped:

2009-09-23 Martin Robinson <martin.james.robinson@gmail.com>

Reviewed by Xan Lopez.

[GTK] REGRESSION: BitmapImage::getGdkPixbuf fails for non-square images
https://bugs.webkit.org/show_bug.cgi?id=29654

Give GDK_Backspace key events the proper text properties.

Instead of adding new tests, this change removes existing tests
from Gtk's skipped list.

  • platform/gtk/KeyEventGtk.cpp: (WebCore::keyIdentifierForGdkKeyCode): (WebCore::singleCharacterString):

2009-09-23 Martin Robinson <martin.james.robinson@gmail.com>

Reviewed by Xan Lopez.

[GTK] REGRESSION: BitmapImage::getGdkPixbuf fails for non-square images
https://bugs.webkit.org/show_bug.cgi?id=29654

Ensure that even when GTKSimpleIMContext filters non-IME keystrokes,
keyboard events are fired properly.

  • WebCoreSupport/EditorClientGtk.cpp: (WebKit::clearPendingIMData): (WebKit::imContextCommitted): (WebKit::imContextPreeditChanged): (WebKit::EditorClient::shouldBeginEditing): (WebKit::EditorClient::shouldEndEditing): (WebKit::interpretEditorCommandKeyEvent): (WebKit::handleCaretBrowsingKeyboardEvent): (WebKit::EditorClient::handleKeyboardEvent): (WebKit::EditorClient::handleInputMethodKeydown):
7:17 PM Changeset in webkit [48696] by eric@webkit.org
  • 1 edit
    33 adds in trunk/LayoutTests

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

No review, just adding missing pixel test results from recent test additions.

  • platform/mac/compositing/generated-content-expected.checksum: Added.
  • platform/mac/compositing/generated-content-expected.png: Added.
  • platform/mac/compositing/masks/masked-ancestor-expected.png: Added.
  • platform/mac/compositing/masks/multiple-masks-expected.png: Added.
  • platform/mac/compositing/masks/simple-composited-mask-expected.png: Added.
  • platform/mac/compositing/reflections/reflection-on-composited-expected.checksum: Added.
  • platform/mac/compositing/reflections/reflection-on-composited-expected.png: Added.
  • platform/mac/compositing/self-painting-layers-expected.checksum: Added.
  • platform/mac/compositing/self-painting-layers-expected.png: Added.
  • platform/mac/compositing/sibling-positioning-expected.checksum: Added.
  • platform/mac/compositing/sibling-positioning-expected.png: Added.
  • platform/mac/fast/forms/button-style-color-expected.checksum: Added.
  • platform/mac/fast/forms/button-style-color-expected.png: Added.
  • platform/mac/fast/forms/text-style-color-expected.checksum: Added.
  • platform/mac/fast/forms/text-style-color-expected.png: Added.
  • platform/mac/fast/forms/textarea-placeholder-pseudo-style-expected.checksum: Added.
  • platform/mac/fast/forms/textarea-placeholder-pseudo-style-expected.png: Added.
  • platform/mac/fast/forms/textarea-placeholder-set-attribute-expected.checksum: Added.
  • platform/mac/fast/forms/textarea-placeholder-set-attribute-expected.png: Added.
  • platform/mac/fast/forms/textarea-placeholder-set-value-expected.checksum: Added.
  • platform/mac/fast/forms/textarea-placeholder-set-value-expected.png: Added.
  • platform/mac/fast/frames/viewsource-on-image-file-expected.checksum: Added.
  • platform/mac/fast/frames/viewsource-on-image-file-expected.png: Added.
  • platform/mac/fast/text/international/khmer-selection-expected.checksum: Added.
  • platform/mac/fast/text/international/khmer-selection-expected.png: Added.
  • platform/mac/media/audio-no-installed-engines-expected.checksum: Added.
  • platform/mac/media/audio-no-installed-engines-expected.png: Added.
  • platform/mac/media/controls-strict-expected.checksum: Added.
  • platform/mac/media/controls-strict-expected.png: Added.
  • platform/mac/media/controls-styling-expected.checksum: Added.
  • platform/mac/media/controls-styling-expected.png: Added.
  • platform/mac/media/video-no-audio-expected.checksum: Added.
  • platform/mac/media/video-no-audio-expected.png: Added.
6:56 PM Changeset in webkit [48695] by weinig@apple.com
  • 3 edits
    4 adds in trunk

WebCore: Fix for https://bugs.webkit.org/show_bug.cgi?id=26989
Should allow navigation of top-level openers
<rdar://problem/7034025>

Reviewed by Adam Barth.

Allow navigation of cross-origin window.opener if it is top-level frame.

Test: http/tests/security/frameNavigation/cross-origin-opener.html

  • loader/FrameLoader.cpp:

(WebCore::FrameLoader::shouldAllowNavigation):

LayoutTests: Test for https://bugs.webkit.org/show_bug.cgi?id=26989
Should allow navigation of top-level openers
<rdar://problem/7034025>

Reviewed by Adam Barth.

  • http/tests/security/frameNavigation/cross-origin-opener-expected.txt: Added.
  • http/tests/security/frameNavigation/cross-origin-opener.html: Added.
  • http/tests/security/frameNavigation/resources/cross-origin-opener-opener.html: Added.
  • http/tests/security/frameNavigation/resources/navigate-opener.html: Added.
6:20 PM Changeset in webkit [48694] by eric@webkit.org
  • 19 edits in trunk/LayoutTests

2009-09-23 Andrew Scherkus <scherkus@chromium.org>

Reviewed by Eric Carlson.

Updating 17 media layout tests to provide different media files based on supported codecs.

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

  • media/audio-constructor-autobuffer.html: Switched to findMediaFile().
  • media/audio-constructor-src.html: Ditto.
  • media/audio-constructor.html: Ditto.
  • media/audio-controls-rendering.html: Ditto.
  • media/audio-delete-while-slider-thumb-clicked.html: Ditto.
  • media/audio-delete-while-step-button-clicked.html: Ditto.
  • media/broken-video.html: Ditto.
  • media/controls-after-reload.html: Ditto, and also changed initial video to counting.mp4 since scaled-matrix.mov is QuickTime specific.
  • media/controls-right-click-on-timebar.html: Ditto.
  • media/event-attributes.html: Ditto.
  • media/media-load-event.html: Ditto.
  • media/media-startTime.html: Ditto.
  • media/progress-event-total-expected.txt: Added new total value.
  • media/progress-event-total.html: Switched to for loop and findMediaFile(), added new total value.
  • media/progress-event.html: Switched to findMediaFile().
  • media/remove-from-document-no-load.html: Ditto.
  • media/remove-from-document.html: Ditto.
  • media/unsupported-tracks.html: Ditto.
6:02 PM Changeset in webkit [48693] by eric@webkit.org
  • 2 edits in trunk/WebKit/qt

2009-09-23 J-P Nurmi <jpnurmi@gmail.com>

Reviewed by Simon Hausmann.

Prevent QWebPage::setView() from changing the viewport size on the fly
in case the view doesn't actually change. QWebPage::setView() is
called upon every QWebGraphicsItem::hoverMoveEvent(), which forced
the viewport size to be equal to the size of the whole graphics view.

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

  • Api/qwebpage.cpp: (QWebPage::setView):
5:54 PM Changeset in webkit [48692] by eric@webkit.org
  • 7 edits in trunk

2009-09-23 Marshall Culpepper <mculpepper@appcelerator.com>

Reviewed by Eric Seidel.

Added $(WebKitLibrariesDir)/include/cairo so cairo.h is found by
default when the necessary dependencies are extracted into the
WebKitLibrariesDir.
https://bugs.webkit.org/show_bug.cgi?id=29661

  • WebCore.vcproj/WebCoreCairo.vsprops:

2009-09-23 Marshall Culpepper <mculpepper@appcelerator.com>

Reviewed by Eric Seidel.

Added $(WebKitLibrariesDir)/include/cairo so cairo.h is found by
default when the necessary dependencies are extracted into the
WebKitLibrariesDir.
https://bugs.webkit.org/show_bug.cgi?id=29661

  • win/tools/vsprops/WinCairo.vsprops:

2009-09-23 Marshall Culpepper <mculpepper@appcelerator.com>

Reviewed by Eric Seidel.

jpeg.lib is now libjpeg.lib in DRT Cairo dependencies. return
"false" in non-implemented stub for setAlwaysAcceptCookies.
https://bugs.webkit.org/show_bug.cgi?id=29661

  • DumpRenderTree/win/DumpRenderTree.vcproj:
  • DumpRenderTree/win/DumpRenderTree.cpp:
5:47 PM Changeset in webkit [48691] by eric@webkit.org
  • 2 edits in trunk/WebKit/qt

2009-09-23 Jedrzej Nowacki <jedrzej.nowacki@nokia.com>

Reviewed by Simon Hausmann.

[Qt] Crash fix in QWebHistory back and forward methods.

QWebHistory::back() and QWebHistory::forward() were crashing on
ASSERT in WebCore::BackForwardList. The methods should check
canGoBack() and canGoForward() at the beginning.

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

  • Api/qwebhistory.cpp: (QWebHistory::back): (QWebHistory::forward):
5:40 PM Changeset in webkit [48690] by eric@webkit.org
  • 1 edit
    4 adds in trunk/LayoutTests

2009-09-23 Karen Grünberg <karen+webkit@chromium.org>

Reviewed by Dimitri Glazkov.

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

Added layout test to test buttons extensively
with different paddings. Testing both buttons
with images and text. Existing tests were not
comprehensive enough.

  • fast/forms/basic-buttons.html: Added.
  • platform/mac/fast/forms/basic-buttons-expected.checksum: Added.
  • platform/mac/fast/forms/basic-buttons-expected.png: Added.
  • platform/mac/fast/forms/basic-buttons-expected.txt: Added.
5:33 PM Changeset in webkit [48689] by Darin Adler
  • 2 edits in trunk/WebKit/mac

Speed up access to history items by caching date computation.

Patch by Darin Adler <Darin Adler> on 2009-09-23
Reviewed by Dan Bernstein.

  • History/WebHistory.mm:

(getDayBoundaries): Refactored from timeIntervalForBeginningOfDay.
Returns the beginning of the day that the passed time is within and
the beginning of the next day.
(beginningOfDay): Added. Uses getDayBoundaries so it can be fast for
multiple dates within the same day, which is the common case.
(dateKey): Added. Calls beginningOfDay and converts to an integer.
(-[WebHistoryPrivate findKey:forDay:]): Changed to call dateKey
insetad of timeIntervalForBeginningOfDay.

5:33 PM Changeset in webkit [48688] by eric@webkit.org
  • 4 edits in trunk/WebKit/qt

2009-09-23 Jedrzej Nowacki <jedrzej.nowacki@nokia.com>

Reviewed by Simon Hausmann.

[Qt] Bug fix. QWebHistory should call QWebPage::updateNavigationActions

In QWebHistory's methods that change item count or current item call
to QWebPage::updateNavigationActions should be executed.
QWebHistory::clear() and QWebHistory::restorState() were changed.
New helper method, QWebPagePrivate accesor, were created in
QWebHistoryPrivate class.
Two autotest were developed.

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

  • Api/qwebhistory.cpp: (QWebHistory::clear): (QWebHistory::restoreState): (QWebHistoryPrivate::page):
  • Api/qwebhistory_p.h:
  • tests/qwebhistory/tst_qwebhistory.cpp: (tst_QWebHistory::saveAndRestore_1): (tst_QWebHistory::clear):
4:27 PM Changeset in webkit [48687] by Darin Adler
  • 4 edits
    2 adds in trunk/WebCore

Crash when website does a history.back() followed by an alert()
https://bugs.webkit.org/show_bug.cgi?id=29686
rdar://problem/6984996

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

When loading is deferred, we need to defer timer-based loads
too, not just networking-driven loads. Otherwise we can get
syncronouse navigation while running a script, which leads to
crashes and other badness.

This patch includes a manual test; an automated test may be
possible some time in the future.

  • dom/Document.cpp:

(WebCore::Document::processHttpEquiv): Use scheduleLocationChange
instead of scheduleHTTPRedirection to implement the navigation
needed for x-frame-options.

  • loader/FrameLoader.cpp:

(WebCore::FrameLoader::FrameLoader): Updated for data members with
new names and new data members.
(WebCore::FrameLoader::setDefersLoading): When turning deferral
off, call startRedirectionTimer and startCheckCompleteTimer, since
either of them might have been fired and ignored while defersLoading
was true.
(WebCore::FrameLoader::clear): Updated for replacement of the
m_checkCompletedTimer and m_checkLoadCompleteTimer timers.
(WebCore::FrameLoader::allAncestorsAreComplete): Added.
(WebCore::FrameLoader::checkCompleted): Added code to set
m_shouldCallCheckCompleted to false. Changed code that calls
startRedirectionTimer to call it unconditionally, since that
function now knows when to do work and doesn't expect callers
to handle that any more.
(WebCore::FrameLoader::checkTimerFired): Added. Replaces the old
timer fired callbacks. Calls checkCompleted and checkLoadComplete
as appropriate, but not when defersLoading is true.
(WebCore::FrameLoader::startCheckCompleteTimer): Added. Replaces
the two different calls to start timers before. Only starts the
timers if they are needed.
(WebCore::FrameLoader::scheduleCheckCompleted): Changed to call
startCheckCompleteTimer after setting boolean.
(WebCore::FrameLoader::scheduleCheckLoadComplete): Ditto.
(WebCore::FrameLoader::scheduleHistoryNavigation): Removed
canGoBackOrForward check. The logic works more naturally when
we don't do anything until the timer fires.
(WebCore::FrameLoader::redirectionTimerFired): Do nothing if
defersLoading is true. Also moved canGoBackOrForward check here.
(WebCore::FrameLoader::scheduleRedirection): Changed code that
calls startRedirectionTimer to do so unconditionally. That
function now handles the rules about when to start the timer
rather than expecting the caller to do so.
(WebCore::FrameLoader::startRedirectionTimer): Added code to
handle the case where there is no redirection scheduled,
where the timer is already active, or where this is a classic
redirection and there is an ancestor that has not yet completed
loading.
(WebCore::FrameLoader::completed): Call startRedirectionTimer
here directly instead of calling a cover named parentCompleted.
Hooray! One less function in the giant FrameLoader class!
(WebCore::FrameLoader::checkLoadComplete): Added code to set
m_shouldCallCheckLoadComplete to false.

  • loader/FrameLoader.h: Replaced the two functions

checkCompletedTimerFired and checkLoadCompleteTimerFired with
one function, checkTimerFired. Removed the parentCompleted
function. Added the startCheckCompleteTimer and
allAncestorsAreComplete functions. Replaced the
m_checkCompletedTimer and m_checkLoadCompleteTimer data
members with m_checkTimer, m_shouldCallCheckCompleted, and
m_shouldCallCheckLoadComplete.

  • manual-tests/go-back-after-alert.html: Added.
  • manual-tests/resources/alert-and-go-back.html: Added.
3:03 PM Changeset in webkit [48686] by ddkilzer@apple.com
  • 3 edits
    1 move in trunk/WebCore

<http://webkit.org/b/29660> Move "Generate 64-bit Export File" build phase script into DerivedSources.make

Reviewed by Mark Rowe.

The "Generate 64-bit Export File" build phase script generated
the WebCore.LP64.exp export file used to link 64-bit WebCore.
Instead of having a separate build phase script, move its
generation into DerivedSources.make where WebCore.exp is
generated.

  • DerivedSources.make: Added a rule to make WebCore.LP64.exp. Added code to append WebCore.PluginHostProcess.exp to $(WEBCORE_EXPORT_DEPENDENCIES) when WTF_USE_PLUGIN_HOST_PROCESS is set to 1.
  • WebCore.PluginHostProcess.exp: Renamed from WebCore/WebCore.LP64.exp.
  • WebCore.xcodeproj/project.pbxproj: Removed the "Generate 64-bit Export File" build phase script. Renamed WebCore.LP64.exp to WebCore.PluginHostProcess.exp.
3:03 PM Changeset in webkit [48685] by ddkilzer@apple.com
  • 4 edits in trunk

Move definition of USE(PLUGIN_HOST_PROCESS) from WebKitPrefix.h to Platform.h

Reviewed by Mark Rowe.

JavaScriptCore:

  • wtf/Platform.h: Define WTF_USE_PLUGIN_HOST_PROCESS to 1 when building on 64-bit SnowLeopard. Define to 0 elsewhere.

WebKit/mac:

  • WebKitPrefix.h: Removed definition of WTF_USE_PLUGIN_HOST_PROCESS.
2:18 PM Changeset in webkit [48684] by pkasting@chromium.org
  • 2 edits in trunk/WebCore

https://bugs.webkit.org/show_bug.cgi?id=29694
[Chromium] Eliminate dependency on gfx::Rect from ImageSkia.

Reviewed by Dimitri Glazkov.

  • platform/graphics/skia/ImageSkia.cpp:

(WebCore::drawResampledBitmap):

12:43 PM Changeset in webkit [48683] by timothy@apple.com
  • 8 edits in trunk

WebCore: Prevent scrolling multiple elements during latched wheel events.

Reviewed by Anders Carlsson.

  • page/EventHandler.cpp:

(WebCore::scrollAndAcceptEvent):
(WebCore::EventHandler::clear):
(WebCore::EventHandler::handleWheelEvent):

  • page/EventHandler.h:
  • rendering/RenderBox.cpp:

(WebCore::RenderBox::scroll):

  • rendering/RenderBox.h:

WebKit/mac: Prevent scrolling multiple frames during latched wheel events.

Reviewed by Anders Carlsson.

  • WebView/WebDynamicScrollBarsView.h:
  • WebView/WebDynamicScrollBarsView.mm:

(-[WebDynamicScrollBarsView scrollWheel:]):

12:18 PM Changeset in webkit [48682] by kov@webkit.org
  • 5 edits in trunk

WebKit/gtk

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

Reviewed by Xan Lopez.

[GTK] need to dump number of pending unload handlers
https://bugs.webkit.org/show_bug.cgi?id=29685

  • webkit/webkitprivate.h:
  • webkit/webkitwebframe.cpp: (webkit_web_frame_get_pending_unload_event_count): New function to satisfy DRT needs.

WebKitTools

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

Reviewed by Xan Lopez.

[GTK] need to dump number of pending unload handlers
https://bugs.webkit.org/show_bug.cgi?id=29685

Implement dumping of the number of pending unload handlers.

The following tests will pass:

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

  • DumpRenderTree/gtk/DumpRenderTree.cpp: (getFrameNameSuitableForTestResult): (webViewLoadFinished):
11:52 AM Changeset in webkit [48681] by andersca@apple.com
  • 2 edits in trunk/WebKit/win

<rdar://problem/7243354>
REGRESSION(48580-48636): Crash clicking embedded QT preview button on apple.com/trailers

Reviewed by Adam Roben.

Check for a null IWebPolicyDelegatePrivate.

  • WebCoreSupport/WebFrameLoaderClient.cpp:

(WebFrameLoaderClient::shouldLoadMediaElementURL):

11:19 AM Changeset in webkit [48680] by dbates@webkit.org
  • 5 edits
    4 adds in trunk

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

Reviewed by Adam Barth.

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


Fixes an issue where a JavaScript URL that was URL-encoded twice can bypass the
XSSAuditor.


The method FrameLoader::executeIfJavaScriptURL decodes the URL escape
sequences in a JavaScript URL before it is eventually passed to the XSSAuditor.
Because the XSSAuditor also decodes the URL escape sequences as part of its
canonicalization, the double decoding of a JavaScript URL would
not match the canonicalization of the input parameters.

Tests: http/tests/security/xssAuditor/iframe-javascript-url-url-encoded.html

http/tests/security/xssAuditor/javascript-link-url-encoded.html

  • bindings/js/ScriptController.cpp: (WebCore::ScriptController::evaluate): Moved call to XSSAuditor::canEvaluateJavaScriptURL into FrameLoader::executeIfJavaScriptURL.
  • bindings/v8/ScriptController.cpp: (WebCore::ScriptController::evaluate): Ditto.
  • loader/FrameLoader.cpp: (WebCore::FrameLoader::executeIfJavaScriptURL): Modified to call XSSAuditor::canEvaluateJavaScriptURL on the JavaScript URL before it is decoded.

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

Reviewed by Adam Barth.

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


Tests that JavaScript URLs that were URL-encoded twice do not bypass the XSSAuditor.

  • http/tests/security/xssAuditor/iframe-javascript-url-url-encoded-expected.txt: Added.
  • http/tests/security/xssAuditor/iframe-javascript-url-url-encoded.html: Added.
  • http/tests/security/xssAuditor/javascript-link-url-encoded-expected.txt: Added.
  • http/tests/security/xssAuditor/javascript-link-url-encoded.html: Added.
9:53 AM Changeset in webkit [48679] by hyatt@apple.com
  • 4 edits
    4 adds in trunk

https://bugs.webkit.org/show_bug.cgi?id=29657
Columns don't break properly in positioned elements with a fixed height. Make sure that
a block is still considered to have columns even when the column count is 1 if the column
width is non-auto.

Reviewed by John Sullivan.

Added fast/multicol/positioned-with-constrained-height.html

WebCore:

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::setDesiredColumnCountAndWidth):

LayoutTests:

  • fast/multicol/positioned-with-constrained-height.html: Added.
  • platform/mac/fast/multicol/float-multicol-expected.txt:
  • platform/mac/fast/multicol/positioned-with-constrained-height-expected.checksum: Added.
  • platform/mac/fast/multicol/positioned-with-constrained-height-expected.png: Added.
  • platform/mac/fast/multicol/positioned-with-constrained-height-expected.txt: Added.
9:38 AM Changeset in webkit [48678] by zecke@webkit.org
  • 2 edits in trunk/WebCore

2009-09-23 Holger Hans Peter Freyther <zecke@selfish.org>

Rubber-stamped by Simon Hausmann.

Add a null check for the Document*. In the mirror benchmarking
application a crash from a call from JavaScript was observed.

I was not able to come up with a test case for this issue.

  • platform/qt/CookieJarQt.cpp: (WebCore::cookieJar):
9:28 AM Changeset in webkit [48677] by kov@webkit.org
  • 2 edits in trunk/LayoutTests

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

Unreviewed. Skipping new tests, and
plugins/destroy-during-npp-new.html, after reporting
https://bugs.webkit.org/show_bug.cgi?id=29683.

  • platform/gtk/Skipped:
9:23 AM Changeset in webkit [48676] by eric@webkit.org
  • 3 edits in trunk/WebKit/qt

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

Reviewed by Tor Arne Vestbø.

Need to guard QX11Info include with Q_WS_X11.
That class may not be available (in QT 4.5 for Symbian, for instance).
Completes fixes in r48627 and r48604.

  • Api/qwebgraphicsitem.cpp:
  • Api/qwebview.cpp:
8:16 AM Changeset in webkit [48675] by kov@webkit.org
  • 2 edits in trunk/LayoutTests

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

Unreviewed. Updated to match the changes done in r48566.

  • platform/gtk/fast/dom/prototype-inheritance-2-expected.txt:
6:59 AM Changeset in webkit [48674] by Simon Hausmann
  • 2 edits in trunk/WebCore

Fix the Qt/Windows build, after the introduction of
the page client.

Patch by Simon Hausmann <simon.hausmann@nokia.com> on 2009-09-23
Reviewed by Tor Arne Vestbø.

  • plugins/win/PluginViewWin.cpp:

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

6:25 AM Changeset in webkit [48673] by xan@webkit.org
  • 2 edits in trunk

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

Reviewed by Gustavo Noronha.

Do not add unneeded include paths for gir files, and add the
include paths for headers manually instead of relying on our own
pc file and installed headers, since that adds a circular
dependency.

  • GNUmakefile.am:
6:08 AM Changeset in webkit [48672] by jmalonzo@webkit.org
  • 4 edits
    1 move in trunk

2009-09-23 Jan Michael Alonzo <jmalonzo@webkit.org>

Reviewed by Xan Lopez.

Minor reorganization to the patch landed in
http://trac.webkit.org/changeset/48670. Also move JSCore-1.0.gir
in the gtk directory as that's only useful to the Gtk port at the
moment.

  • JSCore-1.0.gir: Renamed from JSCore-1.0.gir.
  • GNUmakefile.am:
  • configure.ac:
5:49 AM Changeset in webkit [48671] by kov@webkit.org
  • 2 edits in trunk/WebCore

2009-09-23 Gustavo Noronha Silva <Gustavo Noronha Silva>

Reviewed by Xan Lopez.

[GTK] media tests failing after their rework
https://bugs.webkit.org/show_bug.cgi?id=29532

Correctly advertise the mime types used by the common formats used
in the tests.

Tests that regressed, and will pass again:

media/video-canvas-source.html
media/video-controls.html
media/video-currentTime-set2.html
media/video-dom-autoplay.html
media/video-dom-src.html
media/video-error-abort.html
media/video-load-networkState.html
media/video-load-readyState.html
media/video-muted.html
media/video-no-autoplay.html
media/video-pause-empty-events.html
media/video-play-empty-events.html
media/video-seekable.html
media/video-seeking.html
media/video-size.html
media/video-source-type-params.html
media/video-source-type.html
media/video-source.html
media/video-src-change.html
media/video-src-invalid-remove.html
media/video-src-remove.html
media/video-src-set.html
media/video-src-source.html
media/video-src.html
media/video-timeupdate-during-playback.html
media/video-volume.html

  • platform/graphics/gtk/MediaPlayerPrivateGStreamer.cpp: (WebCore::mimeTypeCache):
5:03 AM Changeset in webkit [48670] by xan@webkit.org
  • 3 edits
    1 add in trunk

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

Reviewed by Gustavo Noronha.

[GTK] We should generate our own gir file for introspection
https://bugs.webkit.org/show_bug.cgi?id=29603

Generate gir and typelib files for WebKit and JSCore. The JSCore
gir file is handwritten (since it's only useful, for now, as a
dependency of the WebKit gir file), the WebKit one is
autogenerated from the headers.

  • GNUmakefile.am:
  • JSCore-1.0.gir: Added.
  • configure.ac:
1:59 AM Changeset in webkit [48669] by zoltan@webkit.org
  • 2 edits in trunk/LayoutTests

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

Reviewed by Tor Arne Vestbø.

[Qt] Skipping test added in r48644 due to missing layoutTestController features.

Sep 22, 2009:

11:39 PM Changeset in webkit [48668] by eric@webkit.org
  • 5 edits
    2 adds in trunk

2009-09-22 Charles Wei <charles.wei@torchmobile.com.cn>

Reviewed by Eric Seidel.

Fix the crash problem with absolte positioned children in foreignobject
htts://bugs.webkit.org/show_bug.cgi?id=26342

  • svg/custom/foreignobject-crash-with-absolute-positioned-children-expected.txt: Added.
  • svg/custom/foreignobject-crash-with-absolute-positioned-children.svg: Added.

2009-09-22 Charles Wei <charles.wei@torchmobile.com.cn>

Reviewed by Eric Seidel.

Fix the crash problem with absolte positioned children in foreignobject
htts://bugs.webkit.org/show_bug.cgi?id=26342

Test: svg/custom/foreignobject-crash-with-absolute-positioned-children.svg

  • rendering/RenderForeignObject.h: (WebCore::RenderForeignObject::isSVGForeignObject):
  • rendering/RenderObject.cpp: (WebCore::RenderObject::containingBlock):
  • rendering/RenderObject.h: (WebCore::RenderObject::isSVGForeignObject):
9:53 PM Changeset in webkit [48667] by eric.carlson@apple.com
  • 1 edit
    6 adds in trunk/LayoutTests

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

Reviewed by Eric Carlson.

Media test files in Ogg and Theora formats
https://bugs.webkit.org/show_bug.cgi?id=29623

Adding test files for media layout tests in Ogg and Theora. They are transcoded
from their originals in H264/AAC using ffmpeg2theora.

  • media/content/counting.ogv: Added.
  • media/content/empty.oga: Added.
  • media/content/garbage.ogv: Added.
  • media/content/silence.oga: Added.
  • media/content/test.oga: Added.
  • media/content/test.ogv: Added.
9:16 PM Changeset in webkit [48666] by atwilson@chromium.org
  • 8 edits
    3 adds in trunk

WebCore: SharedWorkers "name" attribute is now optional.
https://bugs.webkit.org/show_bug.cgi?id=28897

Reviewed by David Levin.

Test: fast/workers/shared-worker-name.html

  • bindings/js/JSSharedWorkerConstructor.cpp:

(WebCore::constructSharedWorker):
Default 'name' attribute to empty string if it is not provided.

  • bindings/v8/custom/V8SharedWorkerCustom.cpp:

(WebCore::CALLBACK_FUNC_DECL):
Default 'name' attribute to empty string if it is not provided.

  • workers/DefaultSharedWorkerRepository.cpp:

(WebCore::SharedWorkerProxy::matches):
Now matches URLs if names are empty strings.
(WebCore::DefaultSharedWorkerRepository::getProxy):
Pass URL in to SharedWorkerProxy::matches().

LayoutTests: SharedWorkers "name" attribute is now optional
https://bugs.webkit.org/show_bug.cgi?id=28897

Reviewed by David Levin.

  • fast/workers/resources/worker-name.js:

New tests for optional name parameter.

  • fast/workers/resources/worker-util.js:

(done):
Now invokes done via a timer to ensure any pending console errors are written out.

  • fast/workers/shared-worker-constructor-expected.txt:
  • fast/workers/shared-worker-constructor.html:

Updated test/expectations now that constructor's "name" param is optional.

  • fast/workers/shared-worker-name-expected.txt:
  • fast/workers/shared-worker-name.html:

New tests for optional name parameter.

7:54 PM Changeset in webkit [48665] by Dimitri Glazkov
  • 2 edits in trunk/WebCore

2009-09-22 Dimitri Glazkov <Dimitri Glazkov>

Unreviewed, another build fix.

[Chromium] Add another missing include.
https://bugs.webkit.org/show_bug.cgi?id=29536

  • inspector/InspectorController.cpp: Added DOMWindow.h include.
6:50 PM Changeset in webkit [48664] by kevino@webkit.org
  • 2 edits in trunk/WebKit/wx

Build fix to ensure the import library gets properly installed on Windows.

6:35 PM Changeset in webkit [48663] by Dimitri Glazkov
  • 2 edits in trunk/WebCore

2009-09-22 Dimitri Glazkov <Dimitri Glazkov>

Unreviewed, build fix.

[Chromium] Add missing include.
https://bugs.webkit.org/show_bug.cgi?id=29536

  • inspector/InspectorDOMStorageResource.cpp: Added DOMWindow.h include.
5:40 PM Changeset in webkit [48662] by oliver@apple.com
  • 13 edits in trunk/JavaScriptCore

Code sampling builds are broken.
https://bugs.webkit.org/show_bug.cgi?id=29662

Reviewed by Geoff Garen

Fix build.

5:38 PM Changeset in webkit [48661] by Darin Adler
  • 5 edits in trunk

Tighten up the ScheduledRedirection machinery to prepare for a bug fix
https://bugs.webkit.org/show_bug.cgi?id=29663

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

WebCore:

  • loader/FrameLoader.cpp:

(WebCore::ScheduledRedirection::ScheduledRedirection): Added a boolean,
initialized to false, to keep track if the redirection has been
communicated to the client.
(WebCore::FrameLoader::stopLoading): Tweaked a comment.
(WebCore::FrameLoader::cancelRedirection): Removed code to clear
m_scheduledRedirection.clear since stopRedirectionTimer does that now.
(WebCore::FrameLoader::allChildrenAreComplete): Added.
(WebCore::FrameLoader::checkCompleted): Use allChildrenAreComplete
function for clarity.
(WebCore::FrameLoader::checkCallImplicitClose): Ditto.
(WebCore::FrameLoader::scheduleRedirection): Changed to take a PassOwnPtr.
(WebCore::FrameLoader::startRedirectionTimer): Added code to set the
toldClient flag and not call clientRedirected a second time if it is set.
(WebCore::FrameLoader::stopRedirectionTimer): Changed so this can be safely
called multiple times and it will call clientRedirectCancelledOrFinished
only once.

  • loader/FrameLoader.h: Changed scheduleRedirection to be a PassOwnPtr.

Added allChildrenAreComplete function.

LayoutTests:

  • http/tests/loading/deleted-host-in-resource-load-delegate-callback-expected.txt:

Updated test to reflect progression. The willPerformClientRedirectToURL
call was called an extra time before.

5:16 PM Changeset in webkit [48660] by eric@webkit.org
  • 2 edits in trunk/WebKitTools

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

Reviewed by Eric Seidel.

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

Remove support of resources directory.

  • Scripts/make-script-test-wrappers:
5:09 PM Changeset in webkit [48659] by eric@webkit.org
  • 16 edits in trunk/WebCore

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

Reviewed by Timothy Hatcher.

WebInspector: Migrate Databases tab to InjectedScript /
serialized interaction.

DOMStorage interaction is now serialized into JSON messages
and doesn't require quarantined objects.

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

  • dom/EventListener.h: (WebCore::EventListener::):
  • inspector/InspectorBackend.cpp: (WebCore::InspectorBackend::selectDOMStorage): (WebCore::InspectorBackend::getDOMStorageEntries): (WebCore::InspectorBackend::setDOMStorageItem): (WebCore::InspectorBackend::removeDOMStorageItem):
  • inspector/InspectorBackend.h:
  • inspector/InspectorBackend.idl:
  • inspector/InspectorController.cpp: (WebCore::InspectorController::didCommitLoad): (WebCore::InspectorController::selectDOMStorage): (WebCore::InspectorController::getDOMStorageEntries): (WebCore::InspectorController::setDOMStorageItem): (WebCore::InspectorController::removeDOMStorageItem): (WebCore::InspectorController::getDOMStorageResourceForId):
  • inspector/InspectorController.h:
  • inspector/InspectorDOMStorageResource.cpp: (WebCore::InspectorDOMStorageResource::InspectorDOMStorageResource): (WebCore::InspectorDOMStorageResource::bind): (WebCore::InspectorDOMStorageResource::unbind): (WebCore::InspectorDOMStorageResource::startReportingChangesToFrontend): (WebCore::InspectorDOMStorageResource::handleEvent): (WebCore::InspectorDOMStorageResource::operator==):
  • inspector/InspectorDOMStorageResource.h: (WebCore::InspectorDOMStorageResource::cast): (WebCore::InspectorDOMStorageResource::id): (WebCore::InspectorDOMStorageResource::domStorage):
  • inspector/InspectorFrontend.cpp: (WebCore::InspectorFrontend::selectDOMStorage): (WebCore::InspectorFrontend::didGetDOMStorageEntries): (WebCore::InspectorFrontend::didSetDOMStorageItem): (WebCore::InspectorFrontend::didRemoveDOMStorageItem): (WebCore::InspectorFrontend::updateDOMStorage):
  • inspector/InspectorFrontend.h:
  • inspector/front-end/DOMStorage.js: (WebInspector.DOMStorage): (WebInspector.DOMStorage.prototype.get id): (WebInspector.DOMStorage.prototype.get domStorage): (WebInspector.DOMStorage.prototype.get isLocalStorage): (WebInspector.DOMStorage.prototype.getEntriesAsync): (WebInspector.DOMStorage.prototype.setItemAsync): (WebInspector.DOMStorage.prototype.removeItemAsync):
  • inspector/front-end/DOMStorageDataGrid.js: (WebInspector.DOMStorageDataGrid): (WebInspector.DOMStorageDataGrid.prototype._startEditingColumnOfDataGridNode): (WebInspector.DOMStorageDataGrid.prototype._startEditing): (WebInspector.DOMStorageDataGrid.prototype._editingCommitted): (WebInspector.DOMStorageDataGrid.prototype._editingCancelled): (WebInspector.DOMStorageDataGrid.prototype.deleteSelectedRow):
  • inspector/front-end/DOMStorageItemsView.js: (WebInspector.DOMStorageItemsView.prototype.update): (WebInspector.DOMStorageItemsView.prototype._showDOMStorageEntries): (WebInspector.DOMStorageItemsView.prototype._dataGridForDOMStorageEntries):
  • inspector/front-end/StoragePanel.js: (WebInspector.StoragePanel.prototype.show): (WebInspector.StoragePanel.prototype.reset): (WebInspector.StoragePanel.prototype.selectDOMStorage): (WebInspector.StoragePanel.prototype.updateDOMStorage): (WebInspector.StoragePanel.prototype._domStorageForId):
  • inspector/front-end/inspector.js: (WebInspector.addDOMStorage): (WebInspector.updateDOMStorage):
4:49 PM Changeset in webkit [48658] by weinig@apple.com
  • 3 edits
    2 adds in trunk

WebCore: Fix for XMLHttpRequest.abort() should destroy the response text.
https://bugs.webkit.org/show_bug.cgi?id=29658
<rdar://problem/5301430>

Reviewed by Alexey Proskuryakov.

Clearing the response text after calling XMLHttpRequest.abort() is necessary
per spec and matches Firefox. It is also a potential memory win.

Test: http/tests/xmlhttprequest/abort-should-destroy-responseText.html

  • xml/XMLHttpRequest.cpp:

(WebCore::XMLHttpRequest::abort): Clear the response text making sure to
keep the actual ResourceReponse around so that the response status and response
status text are kept around.

LayoutTests: Test for XMLHttpRequest.abort() should destroy the response text.
https://bugs.webkit.org/show_bug.cgi?id=29658
<rdar://problem/5301430>

Reviewed by Alexey Proskuryakov.

  • http/tests/xmlhttprequest/abort-should-destroy-responseText-expected.txt: Added.
  • http/tests/xmlhttprequest/abort-should-destroy-responseText.html: Added.
4:48 PM Changeset in webkit [48657] by Dimitri Glazkov
  • 2 edits in trunk/WebCore

2009-09-22 Dimitri Glazkov <Dimitri Glazkov>

No review, rolling out r48639.
http://trac.webkit.org/changeset/48639

  • bindings/v8/V8GCController.cpp: (WebCore::ObjectGrouperVisitor::visitDOMWrapper):
4:41 PM Changeset in webkit [48656] by hamaji@chromium.org
  • 2 edits
    2 moves
    1 add in trunk/LayoutTests

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

Reviewed by Eric Seidel.

fast/backgrounds/repeat tests are different from their TEMPLATE
https://bugs.webkit.org/show_bug.cgi?id=29659

  • fast/backgrounds/repeat/parsing-background-repeat.html:
  • fast/backgrounds/repeat/resources/TEMPLATE.html: Removed.
  • fast/backgrounds/repeat/resources/parsing-background-repeat.js: Removed.
  • fast/backgrounds/repeat/script-tests: Added.
  • fast/backgrounds/repeat/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/backgrounds/repeat/resources/TEMPLATE.html.
  • fast/backgrounds/repeat/script-tests/parsing-background-repeat.js: Copied from LayoutTests/fast/backgrounds/repeat/resources/parsing-background-repeat.js.
3:39 PM Changeset in webkit [48655] by eric@webkit.org
  • 2 edits in trunk/WebKitTools

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

No review, only fixing typo (missing space character).

Fix typo from https://bugs.webkit.org/show_bug.cgi?id=29220

  • Scripts/run-webkit-tests:
3:33 PM Changeset in webkit [48654] by eric@webkit.org
  • 2 edits in trunk/LayoutTests

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

Reviewed by Simon Fraser.

media/controls-after-reload.html crashes occasionally
https://bugs.webkit.org/show_bug.cgi?id=29037

Skip media/controls-after-reload.html for the same CVDisplayLink
issue as seen with media/video-size-intrinsic-scale.html.

  • platform/mac-leopard/Skipped:
3:24 PM Changeset in webkit [48653] by eric@webkit.org
  • 9 edits
    4 adds in trunk

2009-09-22 Dumitru Daniliuc <dumi@chromium.org>

Reviewed by Dimitri Glazkov.

  1. Adding two tests for the transaction coordinator.
  2. Fixing an incorrect <head> tag in some tests.

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

  • storage/multiple-transactions-on-different-handles.html: Fixed a <head> tag (should've been </head>).
  • storage/open-database-while-transaction-in-progress.html: Fixed a <head> tag (should've been </head>).
  • storage/read-and-write-transactions-dont-run-together-expected.txt: Added.
  • storage/read-and-write-transactions-dont-run-together.html: Added.
  • storage/read-transactions-running-concurrently-expected.txt: Added.
  • storage/read-transactions-running-concurrently.html: Added.
  • storage/test-authorizer.html: Fixed a <head> tag (should've been </head>).

2009-09-22 Dumitru Daniliuc <dumi@chromium.org>

Reviewed by Dimitri Glazkov.

Changing the transaction coordinator to (re-)allow multiple read
transactions on the same database to run concurrently (without
risking a deadlock this time).

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

Tests: storage/read-and-write-transactions-dont-run-together.html

storage/read-transactions-running-concurrently.html

  • storage/SQLTransaction.h: (WebCore::SQLTransaction::isReadOnly): Returns the type of the transaction.
  • storage/SQLTransactionCoordinator.cpp: (WebCore::SQLTransactionCoordinator::acquireLock): Changed to allow multiple read transactions on the same DB to run concurrently. (WebCore::SQLTransactionCoordinator::releaseLock): Changed to allow multiple read transactions on the same DB to run concurrently. (WebCore::SQLTransactionCoordinator::shutdown): Renamed the map.
  • storage/SQLTransactionCoordinator.h:
3:05 PM Changeset in webkit [48652] by pkasting@chromium.org
  • 3 edits in trunk/WebCore

https://bugs.webkit.org/show_bug.cgi?id=29652
Support true system colors for CSS system colors in Chromium/Win.

Reviewed by David Levin.

  • rendering/RenderThemeChromiumWin.cpp:

(WebCore::cssValueIdToSysColorIndex):
(WebCore::RenderThemeChromiumWin::systemColor):

  • rendering/RenderThemeChromiumWin.h:
2:22 PM Changeset in webkit [48651] by hamaji@chromium.org
  • 281 edits
    283 moves
    2 adds in trunk/LayoutTests

2009-09-22 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 js directory.

  • fast/js/Array-isArray.html:
  • fast/js/JSON-parse-reviver.html:
  • fast/js/JSON-stringify-replacer.html:
  • fast/js/Object-create.html:
  • fast/js/Object-defineProperties.html:
  • fast/js/Object-defineProperty.html:
  • fast/js/Object-keys.html:
  • fast/js/activation-proto.html:
  • fast/js/arguments-bad-index.html:
  • fast/js/arguments.html:
  • fast/js/array-enumerators-functions.html:
  • fast/js/array-every.html:
  • fast/js/array-filter.html:
  • fast/js/array-float-delete.html:
  • fast/js/array-functions-non-arrays.html:
  • fast/js/array-holes.html:
  • fast/js/array-index-immediate-types.html:
  • fast/js/array-indexing.html:
  • fast/js/array-iterate-backwards.html:
  • fast/js/array-join-bug-11524.html:
  • fast/js/array-lastIndexOf.html:
  • fast/js/array-reduce.html:
  • fast/js/array-reduceRight.html:
  • fast/js/array-reset-large-index.html:
  • fast/js/array-sort-reentrance.html:
  • fast/js/array-splice.html:
  • fast/js/array-tostring-and-join.html:
  • fast/js/array-tostring-ignore-separator.html:
  • fast/js/assign.html:
  • fast/js/avl-crash.html:
  • fast/js/cached-eval-gc.html:
  • fast/js/caller-property.html:
  • fast/js/char-at.html:
  • fast/js/closure-inside-extra-arg-call.html:
  • fast/js/code-serialize-paren.html:
  • fast/js/codegen-loops-logical-nodes.html:
  • fast/js/codegen-peephole-locals.html:
  • fast/js/codegen-temporaries.html:
  • fast/js/comparefn-sort-stability.html:
  • fast/js/const-without-initializer.html:
  • fast/js/constant-count.html:
  • fast/js/constant-folding.html:
  • fast/js/constructor-attributes.html:
  • fast/js/constructor.html:
  • fast/js/continue-break-multiple-labels.html:
  • fast/js/convert-nan-to-bool.html:
  • fast/js/cyclic-proto.html:
  • fast/js/cyclic-prototypes.html:
  • fast/js/cyclic-ref-toString.html:
  • fast/js/date-DST-pre-1970.html:
  • fast/js/date-DST-time-cusps.html:
  • fast/js/date-big-constructor.html:
  • fast/js/date-big-setdate.html:
  • fast/js/date-big-setmonth.html:
  • fast/js/date-constructor.html:
  • fast/js/date-negative-setmonth.html:
  • fast/js/date-parse-comments-test.html:
  • fast/js/date-parse-test.html:
  • fast/js/date-preserve-milliseconds.html:
  • fast/js/date-proto-generic-invocation.html:
  • fast/js/date-set-to-nan.html:
  • fast/js/date-toisostring.html:
  • fast/js/debugger.html:
  • fast/js/declaration-in-block.html:
  • fast/js/delete-getters-setters.html:
  • fast/js/delete-syntax.html:
  • fast/js/delete-then-put.html:
  • fast/js/dictionary-no-cache.html:
  • fast/js/do-while-semicolon.html:
  • fast/js/dot-node-base-exception.html:
  • fast/js/duplicate-param-crash.html:
  • fast/js/duplicate-param-gc-crash.html:
  • fast/js/equality.html:
  • fast/js/eval-cache-crash.html:
  • fast/js/eval-throw-return.html:
  • fast/js/eval-var-decl.html:
  • fast/js/exception-expression-offset.html:
  • fast/js/exception-for-nonobject.html:
  • fast/js/exception-linenums.html:
  • fast/js/exception-try-finally-scope-error.html:
  • fast/js/exception-with-handler-inside-eval-with-dynamic-scope.html:
  • fast/js/excessive-comma-usage.html:
  • fast/js/finally-codegen-failure.html:
  • fast/js/for-in-avoid-duplicates.html:
  • fast/js/for-in-cached.html:
  • fast/js/for-in-exeception.html:
  • fast/js/for-in-to-text.html:
  • fast/js/for-in-var-scope.html:
  • fast/js/function-apply-aliased.html:
  • fast/js/function-apply.html:
  • fast/js/function-call-aliased.html:
  • fast/js/function-call-register-allocation.html:
  • fast/js/function-constructor-newline-after-brace.html:
  • fast/js/function-constructor-single-line-comment.html:
  • fast/js/function-declaration-statement.html:
  • fast/js/function-declaration.html:
  • fast/js/function-declarations-in-switch-statement.html:
  • fast/js/function-dot-arguments.html:
  • fast/js/function-name.html:
  • fast/js/function-names.html:
  • fast/js/function-toString-object-literals.html:
  • fast/js/function-toString-parentheses.html:
  • fast/js/function-toString-semicolon-insertion.html:
  • fast/js/getter-setter-gc.html:
  • fast/js/global-constructors.html:
  • fast/js/global-function-resolve.html:
  • fast/js/gmail-re-re.html:
  • fast/js/has-own-property.html:
  • fast/js/ignored-result-null-comparison-crash.html:
  • fast/js/ignored-result-ref-crash.html:
  • fast/js/implicit-call-with-global-reentry.html:
  • fast/js/instance-of-immediates.html:
  • fast/js/instanceof-operator.html:
  • fast/js/integer-extremes.html:
  • fast/js/isPrototypeOf.html:
  • fast/js/kde/Array.html:
  • fast/js/kde/Boolean.html:
  • fast/js/kde/Date-setYear.html:
  • fast/js/kde/Error.html:
  • fast/js/kde/GlobalObject.html:
  • fast/js/kde/Number.html:
  • fast/js/kde/Object.html:
  • fast/js/kde/Prototype.html:
  • fast/js/kde/RegExp.html:
  • fast/js/kde/StringObject.html:
  • fast/js/kde/arguments-scope.html:
  • fast/js/kde/assignments.html:
  • fast/js/kde/cast.html:
  • fast/js/kde/comment-1.html:
  • fast/js/kde/comment-2.html:
  • fast/js/kde/completion.html:
  • fast/js/kde/conditional.html:
  • fast/js/kde/constructor_length.html:
  • fast/js/kde/crash-1.html:
  • fast/js/kde/crash-2.html:
  • fast/js/kde/delete.html:
  • fast/js/kde/empty.html:
  • fast/js/kde/encode_decode_uri.html:
  • fast/js/kde/eval.html:
  • fast/js/kde/evil-n.html:
  • fast/js/kde/exception_propagation.html:
  • fast/js/kde/exceptions.html:
  • fast/js/kde/func-decl.html:
  • fast/js/kde/function.html:
  • fast/js/kde/function_arguments.html:
  • fast/js/kde/function_constructor.html:
  • fast/js/kde/function_length.html:
  • fast/js/kde/garbage-n.html:
  • fast/js/kde/inbuilt_function_proto.html:
  • fast/js/kde/inbuilt_function_tostring.html:
  • fast/js/kde/iteration.html:
  • fast/js/kde/j-comment-3.html:
  • fast/js/kde/j-comment-4.html:
  • fast/js/kde/literals.html:
  • fast/js/kde/lval-exceptions.html:
  • fast/js/kde/math.html:
  • fast/js/kde/md5-1.html:
  • fast/js/kde/md5-2.html:
  • fast/js/kde/object_prototype.html:
  • fast/js/kde/object_prototype_tostring.html:
  • fast/js/kde/operators.html:
  • fast/js/kde/parse.html:
  • fast/js/kde/prototype_length.html:
  • fast/js/kde/prototype_proto.html:
  • fast/js/kde/resources/Array.js: Removed.
  • fast/js/kde/resources/Boolean.js: Removed.
  • fast/js/kde/resources/Date-setYear.js: Removed.
  • fast/js/kde/resources/Error.js: Removed.
  • fast/js/kde/resources/GlobalObject.js: Removed.
  • fast/js/kde/resources/Number.js: Removed.
  • fast/js/kde/resources/Object.js: Removed.
  • fast/js/kde/resources/Prototype.js: Removed.
  • fast/js/kde/resources/RegExp.js: Removed.
  • fast/js/kde/resources/StringObject.js: Removed.
  • fast/js/kde/resources/TEMPLATE-n.html: Removed.
  • fast/js/kde/resources/TEMPLATE.html: Removed.
  • fast/js/kde/resources/arguments-scope.js: Removed.
  • fast/js/kde/resources/assignments.js: Removed.
  • fast/js/kde/resources/cast.js: Removed.
  • fast/js/kde/resources/comment-1.js: Removed.
  • fast/js/kde/resources/comment-2.js: Removed.
  • fast/js/kde/resources/completion.js: Removed.
  • fast/js/kde/resources/conditional.js: Removed.
  • fast/js/kde/resources/constructor_length.js: Removed.
  • fast/js/kde/resources/crash-1.js: Removed.
  • fast/js/kde/resources/crash-2.js: Removed.
  • fast/js/kde/resources/delete.js: Removed.
  • fast/js/kde/resources/empty.js: Removed.
  • fast/js/kde/resources/encode_decode_uri.js: Removed.
  • fast/js/kde/resources/eval.js: Removed.
  • fast/js/kde/resources/evil-n.js: Removed.
  • fast/js/kde/resources/exception_propagation.js: Removed.
  • fast/js/kde/resources/exceptions.js: Removed.
  • fast/js/kde/resources/func-decl.js: Removed.
  • fast/js/kde/resources/function.js: Removed.
  • fast/js/kde/resources/function_arguments.js: Removed.
  • fast/js/kde/resources/function_constructor.js: Removed.
  • fast/js/kde/resources/function_length.js: Removed.
  • fast/js/kde/resources/garbage-n.js: Removed.
  • fast/js/kde/resources/inbuilt_function_proto.js: Removed.
  • fast/js/kde/resources/inbuilt_function_tostring.js: Removed.
  • fast/js/kde/resources/iteration.js: Removed.
  • fast/js/kde/resources/j-comment-3.js: Removed.
  • fast/js/kde/resources/j-comment-4.js: Removed.
  • fast/js/kde/resources/literals.js: Removed.
  • fast/js/kde/resources/lval-exceptions.js: Removed.
  • fast/js/kde/resources/math.js: Removed.
  • fast/js/kde/resources/md5-1.js: Removed.
  • fast/js/kde/resources/md5-2.js: Removed.
  • fast/js/kde/resources/object_prototype.js: Removed.
  • fast/js/kde/resources/object_prototype_tostring.js: Removed.
  • fast/js/kde/resources/operators.js: Removed.
  • fast/js/kde/resources/parse.js: Removed.
  • fast/js/kde/resources/prototype_length.js: Removed.
  • fast/js/kde/resources/prototype_proto.js: Removed.
  • fast/js/kde/resources/scope.js: Removed.
  • fast/js/kde/resources/statements.js: Removed.
  • fast/js/kde/resources/string-1-n.js: Removed.
  • fast/js/kde/resources/string-2-n.js: Removed.
  • fast/js/kde/resources/var_decl_init.js: Removed.
  • fast/js/kde/scope.html:
  • fast/js/kde/script-tests: Added.
  • fast/js/kde/script-tests/Array.js: Copied from LayoutTests/fast/js/kde/resources/Array.js.
  • fast/js/kde/script-tests/Boolean.js: Copied from LayoutTests/fast/js/kde/resources/Boolean.js.
  • fast/js/kde/script-tests/Date-setYear.js: Copied from LayoutTests/fast/js/kde/resources/Date-setYear.js.
  • fast/js/kde/script-tests/Error.js: Copied from LayoutTests/fast/js/kde/resources/Error.js.
  • fast/js/kde/script-tests/GlobalObject.js: Copied from LayoutTests/fast/js/kde/resources/GlobalObject.js.
  • fast/js/kde/script-tests/Number.js: Copied from LayoutTests/fast/js/kde/resources/Number.js.
  • fast/js/kde/script-tests/Object.js: Copied from LayoutTests/fast/js/kde/resources/Object.js.
  • fast/js/kde/script-tests/Prototype.js: Copied from LayoutTests/fast/js/kde/resources/Prototype.js.
  • fast/js/kde/script-tests/RegExp.js: Copied from LayoutTests/fast/js/kde/resources/RegExp.js.
  • fast/js/kde/script-tests/StringObject.js: Copied from LayoutTests/fast/js/kde/resources/StringObject.js.
  • fast/js/kde/script-tests/TEMPLATE-n.html: Copied from LayoutTests/fast/js/kde/resources/TEMPLATE-n.html.
  • fast/js/kde/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/js/kde/resources/TEMPLATE.html.
  • fast/js/kde/script-tests/arguments-scope.js: Copied from LayoutTests/fast/js/kde/resources/arguments-scope.js.
  • fast/js/kde/script-tests/assignments.js: Copied from LayoutTests/fast/js/kde/resources/assignments.js.
  • fast/js/kde/script-tests/cast.js: Copied from LayoutTests/fast/js/kde/resources/cast.js.
  • fast/js/kde/script-tests/comment-1.js: Copied from LayoutTests/fast/js/kde/resources/comment-1.js.
  • fast/js/kde/script-tests/comment-2.js: Copied from LayoutTests/fast/js/kde/resources/comment-2.js.
  • fast/js/kde/script-tests/completion.js: Copied from LayoutTests/fast/js/kde/resources/completion.js.
  • fast/js/kde/script-tests/conditional.js: Copied from LayoutTests/fast/js/kde/resources/conditional.js.
  • fast/js/kde/script-tests/constructor_length.js: Copied from LayoutTests/fast/js/kde/resources/constructor_length.js.
  • fast/js/kde/script-tests/crash-1.js: Copied from LayoutTests/fast/js/kde/resources/crash-1.js.
  • fast/js/kde/script-tests/crash-2.js: Copied from LayoutTests/fast/js/kde/resources/crash-2.js.
  • fast/js/kde/script-tests/delete.js: Copied from LayoutTests/fast/js/kde/resources/delete.js.
  • fast/js/kde/script-tests/empty.js: Copied from LayoutTests/fast/js/kde/resources/empty.js.
  • fast/js/kde/script-tests/encode_decode_uri.js: Copied from LayoutTests/fast/js/kde/resources/encode_decode_uri.js.
  • fast/js/kde/script-tests/eval.js: Copied from LayoutTests/fast/js/kde/resources/eval.js.
  • fast/js/kde/script-tests/evil-n.js: Copied from LayoutTests/fast/js/kde/resources/evil-n.js.
  • fast/js/kde/script-tests/exception_propagation.js: Copied from LayoutTests/fast/js/kde/resources/exception_propagation.js.
  • fast/js/kde/script-tests/exceptions.js: Copied from LayoutTests/fast/js/kde/resources/exceptions.js.
  • fast/js/kde/script-tests/func-decl.js: Copied from LayoutTests/fast/js/kde/resources/func-decl.js.
  • fast/js/kde/script-tests/function.js: Copied from LayoutTests/fast/js/kde/resources/function.js.
  • fast/js/kde/script-tests/function_arguments.js: Copied from LayoutTests/fast/js/kde/resources/function_arguments.js.
  • fast/js/kde/script-tests/function_constructor.js: Copied from LayoutTests/fast/js/kde/resources/function_constructor.js.
  • fast/js/kde/script-tests/function_length.js: Copied from LayoutTests/fast/js/kde/resources/function_length.js.
  • fast/js/kde/script-tests/garbage-n.js: Copied from LayoutTests/fast/js/kde/resources/garbage-n.js.
  • fast/js/kde/script-tests/inbuilt_function_proto.js: Copied from LayoutTests/fast/js/kde/resources/inbuilt_function_proto.js.
  • fast/js/kde/script-tests/inbuilt_function_tostring.js: Copied from LayoutTests/fast/js/kde/resources/inbuilt_function_tostring.js.
  • fast/js/kde/script-tests/iteration.js: Copied from LayoutTests/fast/js/kde/resources/iteration.js.
  • fast/js/kde/script-tests/j-comment-3.js: Copied from LayoutTests/fast/js/kde/resources/j-comment-3.js.
  • fast/js/kde/script-tests/j-comment-4.js: Copied from LayoutTests/fast/js/kde/resources/j-comment-4.js.
  • fast/js/kde/script-tests/literals.js: Copied from LayoutTests/fast/js/kde/resources/literals.js.
  • fast/js/kde/script-tests/lval-exceptions.js: Copied from LayoutTests/fast/js/kde/resources/lval-exceptions.js.
  • fast/js/kde/script-tests/math.js: Copied from LayoutTests/fast/js/kde/resources/math.js.
  • fast/js/kde/script-tests/md5-1.js: Copied from LayoutTests/fast/js/kde/resources/md5-1.js.
  • fast/js/kde/script-tests/md5-2.js: Copied from LayoutTests/fast/js/kde/resources/md5-2.js.
  • fast/js/kde/script-tests/object_prototype.js: Copied from LayoutTests/fast/js/kde/resources/object_prototype.js.
  • fast/js/kde/script-tests/object_prototype_tostring.js: Copied from LayoutTests/fast/js/kde/resources/object_prototype_tostring.js.
  • fast/js/kde/script-tests/operators.js: Copied from LayoutTests/fast/js/kde/resources/operators.js.
  • fast/js/kde/script-tests/parse.js: Copied from LayoutTests/fast/js/kde/resources/parse.js.
  • fast/js/kde/script-tests/prototype_length.js: Copied from LayoutTests/fast/js/kde/resources/prototype_length.js.
  • fast/js/kde/script-tests/prototype_proto.js: Copied from LayoutTests/fast/js/kde/resources/prototype_proto.js.
  • fast/js/kde/script-tests/scope.js: Copied from LayoutTests/fast/js/kde/resources/scope.js.
  • fast/js/kde/script-tests/statements.js: Copied from LayoutTests/fast/js/kde/resources/statements.js.
  • fast/js/kde/script-tests/string-1-n.js: Copied from LayoutTests/fast/js/kde/resources/string-1-n.js.
  • fast/js/kde/script-tests/string-2-n.js: Copied from LayoutTests/fast/js/kde/resources/string-2-n.js.
  • fast/js/kde/script-tests/var_decl_init.js: Copied from LayoutTests/fast/js/kde/resources/var_decl_init.js.
  • fast/js/kde/statements.html:
  • fast/js/kde/string-1-n.html:
  • fast/js/kde/string-2-n.html:
  • fast/js/kde/var_decl_init.html:
  • fast/js/large-expressions.html:
  • fast/js/lastModified.html:
  • fast/js/logical-or-jless.html:
  • fast/js/math-transforms.html:
  • fast/js/math.html:
  • fast/js/method-check.html:
  • fast/js/mod-crash.html:
  • fast/js/modify-non-references.html:
  • fast/js/named-function-expression.html:
  • fast/js/navigator-mimeTypes-length.html:
  • fast/js/nested-object-gc.html:
  • fast/js/non-object-proto.html:
  • fast/js/null-char-in-string.html:
  • fast/js/number-cell-reuse.html:
  • fast/js/number-parsing-crash.html:
  • fast/js/number-toExponential.html:
  • fast/js/number-toString.html:
  • fast/js/number-tofixed.html:
  • fast/js/number-toprecision.html:
  • fast/js/numeric-conversion.html:
  • fast/js/object-extra-comma.html:
  • fast/js/object-prototype-constructor.html:
  • fast/js/object-prototype-toLocaleString.html:
  • fast/js/order-of-operations.html:
  • fast/js/parse-backslash-before-newline.html:
  • fast/js/postfix-syntax.html:
  • fast/js/prefix-syntax.html:
  • fast/js/pretty-print.html:
  • fast/js/primitive-method-this.html:
  • fast/js/primitive-property-access-edge-cases.html:
  • fast/js/property-getters-and-setters.html:
  • fast/js/propertyIsEnumerable.html:
  • fast/js/prototypes.html:
  • fast/js/read-modify-eval.html:
  • fast/js/recursion-limit-equal.html:
  • fast/js/reentrant-call-unwind.html:
  • fast/js/regexp-backreferences.html:
  • fast/js/regexp-char-insensitive.html:
  • fast/js/regexp-character-match-out-of-order.html:
  • fast/js/regexp-compile-crash.html:
  • fast/js/regexp-compile.html:
  • fast/js/regexp-divequal.html:
  • fast/js/regexp-extended-characters-crash.html:
  • fast/js/regexp-extended-characters-match.html:
  • fast/js/regexp-extended-characters-more.html:
  • fast/js/regexp-find-first-asserted.html:
  • fast/js/regexp-lastindex.html:
  • fast/js/regexp-many-brackets.html:
  • fast/js/regexp-negative-special-characters.html:
  • fast/js/regexp-no-extensions.html:
  • fast/js/regexp-non-bmp.html:
  • fast/js/regexp-non-capturing-groups.html:
  • fast/js/regexp-non-character.html:
  • fast/js/regexp-overflow-too-big.html:
  • fast/js/regexp-overflow.html:
  • fast/js/regexp-range-bound-ffff.html:
  • fast/js/regexp-range-out-of-order.html:
  • fast/js/regexp-ranges-and-escaped-hyphens.html:
  • fast/js/regexp-stack-overflow.html:
  • fast/js/regexp-unicode-handling.html:
  • fast/js/regexp-unicode-overflow.html:
  • fast/js/registerCachingAcrossBranchTargets.html:
  • fast/js/rehash-assign.html:
  • fast/js/removing-Cf-characters.html:
  • fast/js/reparsing-semicolon-insertion.html:
  • fast/js/repeat-cached-vm-reentry.html:
  • fast/js/reserved-words.html:
  • fast/js/resize-array-assign.html:
  • fast/js/resources/Array-isArray.js: Removed.
  • fast/js/resources/JSON-parse-reviver.js: Removed.
  • fast/js/resources/JSON-stringify-replacer.js: Removed.
  • fast/js/resources/Object-create.js: Removed.
  • fast/js/resources/Object-defineProperties.js: Removed.
  • fast/js/resources/Object-defineProperty.js: Removed.
  • fast/js/resources/Object-keys.js: Removed.
  • fast/js/resources/TEMPLATE.html: Removed.
  • fast/js/resources/activation-proto.js: Removed.
  • fast/js/resources/arguments-bad-index.js: Removed.
  • fast/js/resources/arguments.js: Removed.
  • fast/js/resources/array-enumerators-functions.js: Removed.
  • fast/js/resources/array-every.js: Removed.
  • fast/js/resources/array-filter.js: Removed.
  • fast/js/resources/array-float-delete.js: Removed.
  • fast/js/resources/array-functions-non-arrays.js: Removed.
  • fast/js/resources/array-holes.js: Removed.
  • fast/js/resources/array-index-immediate-types.js: Removed.
  • fast/js/resources/array-indexing.js: Removed.
  • fast/js/resources/array-iterate-backwards.js: Removed.
  • fast/js/resources/array-join-bug-11524.js: Removed.
  • fast/js/resources/array-lastIndexOf.js: Removed.
  • fast/js/resources/array-reduce.js: Removed.
  • fast/js/resources/array-reduceRight.js: Removed.
  • fast/js/resources/array-reset-large-index.js: Removed.
  • fast/js/resources/array-sort-reentrance.js: Removed.
  • fast/js/resources/array-splice.js: Removed.
  • fast/js/resources/array-tostring-and-join.js: Removed.
  • fast/js/resources/array-tostring-ignore-separator.js: Removed.
  • fast/js/resources/assign.js: Removed.
  • fast/js/resources/avl-crash.js: Removed.
  • fast/js/resources/cached-eval-gc.js: Removed.
  • fast/js/resources/caller-property.js: Removed.
  • fast/js/resources/char-at.js: Removed.
  • fast/js/resources/closure-inside-extra-arg-call.js: Removed.
  • fast/js/resources/code-serialize-paren.js: Removed.
  • fast/js/resources/codegen-loops-logical-nodes.js: Removed.
  • fast/js/resources/codegen-peephole-locals.js: Removed.
  • fast/js/resources/codegen-temporaries.js: Removed.
  • fast/js/resources/comparefn-sort-stability.js: Removed.
  • fast/js/resources/const-without-initializer.js: Removed.
  • fast/js/resources/constant-count.js: Removed.
  • fast/js/resources/constant-folding.js: Removed.
  • fast/js/resources/constructor-attributes.js: Removed.
  • fast/js/resources/constructor.js: Removed.
  • fast/js/resources/continue-break-multiple-labels.js: Removed.
  • fast/js/resources/convert-nan-to-bool.js: Removed.
  • fast/js/resources/cyclic-proto.js: Removed.
  • fast/js/resources/cyclic-prototypes.js: Removed.
  • fast/js/resources/cyclic-ref-toString.js: Removed.
  • fast/js/resources/date-DST-pre-1970.js: Removed.
  • fast/js/resources/date-DST-time-cusps.js: Removed.
  • fast/js/resources/date-big-constructor.js: Removed.
  • fast/js/resources/date-big-setdate.js: Removed.
  • fast/js/resources/date-big-setmonth.js: Removed.
  • fast/js/resources/date-constructor.js: Removed.
  • fast/js/resources/date-negative-setmonth.js: Removed.
  • fast/js/resources/date-parse-comments-test.js: Removed.
  • fast/js/resources/date-parse-test.js: Removed.
  • fast/js/resources/date-preserve-milliseconds.js: Removed.
  • fast/js/resources/date-proto-generic-invocation.js: Removed.
  • fast/js/resources/date-set-to-nan.js: Removed.
  • fast/js/resources/date-toisostring.js: Removed.
  • fast/js/resources/debugger.js: Removed.
  • fast/js/resources/declaration-in-block.js: Removed.
  • fast/js/resources/delete-getters-setters.js: Removed.
  • fast/js/resources/delete-syntax.js: Removed.
  • fast/js/resources/delete-then-put.js: Removed.
  • fast/js/resources/dictionary-no-cache.js: Removed.
  • fast/js/resources/do-while-semicolon.js: Removed.
  • fast/js/resources/dot-node-base-exception.js: Removed.
  • fast/js/resources/duplicate-param-crash.js: Removed.
  • fast/js/resources/duplicate-param-gc-crash.js: Removed.
  • fast/js/resources/equality.js: Removed.
  • fast/js/resources/eval-cache-crash.js: Removed.
  • fast/js/resources/eval-throw-return.js: Removed.
  • fast/js/resources/eval-var-decl.js: Removed.
  • fast/js/resources/exception-expression-offset.js: Removed.
  • fast/js/resources/exception-for-nonobject.js: Removed.
  • fast/js/resources/exception-linenums.js: Removed.
  • fast/js/resources/exception-try-finally-scope-error.js: Removed.
  • fast/js/resources/exception-with-handler-inside-eval-with-dynamic-scope.js: Removed.
  • fast/js/resources/excessive-comma-usage.js: Removed.
  • fast/js/resources/finally-codegen-failure.js: Removed.
  • fast/js/resources/for-in-avoid-duplicates.js: Removed.
  • fast/js/resources/for-in-cached.js: Removed.
  • fast/js/resources/for-in-exeception.js: Removed.
  • fast/js/resources/for-in-to-text.js: Removed.
  • fast/js/resources/for-in-var-scope.js: Removed.
  • fast/js/resources/function-apply-aliased.js: Removed.
  • fast/js/resources/function-apply.js: Removed.
  • fast/js/resources/function-call-aliased.js: Removed.
  • fast/js/resources/function-call-register-allocation.js: Removed.
  • fast/js/resources/function-constructor-newline-after-brace.js: Removed.
  • fast/js/resources/function-constructor-single-line-comment.js: Removed.
  • fast/js/resources/function-declaration-statement.js: Removed.
  • fast/js/resources/function-declaration.js: Removed.
  • fast/js/resources/function-declarations-in-switch-statement.js: Removed.
  • fast/js/resources/function-dot-arguments.js: Removed.
  • fast/js/resources/function-name.js: Removed.
  • fast/js/resources/function-names.js: Removed.
  • fast/js/resources/function-toString-object-literals.js: Removed.
  • fast/js/resources/function-toString-parentheses.js: Removed.
  • fast/js/resources/function-toString-semicolon-insertion.js: Removed.
  • fast/js/resources/getter-setter-gc.js: Removed.
  • fast/js/resources/global-constructors.js: Removed.
  • fast/js/resources/global-function-resolve.js: Removed.
  • fast/js/resources/gmail-re-re.js: Removed.
  • fast/js/resources/has-own-property.js: Removed.
  • fast/js/resources/ignored-result-null-comparison-crash.js: Removed.
  • fast/js/resources/ignored-result-ref-crash.js: Removed.
  • fast/js/resources/implicit-call-with-global-reentry.js: Removed.
  • fast/js/resources/instance-of-immediates.js: Removed.
  • fast/js/resources/instanceof-operator.js: Removed.
  • fast/js/resources/integer-extremes.js: Removed.
  • fast/js/resources/isPrototypeOf.js: Removed.
  • fast/js/resources/large-expressions.js: Removed.
  • fast/js/resources/lastModified.js: Removed.
  • fast/js/resources/logical-or-jless.js: Removed.
  • fast/js/resources/math-transforms.js: Removed.
  • fast/js/resources/math.js: Removed.
  • fast/js/resources/method-check.js: Removed.
  • fast/js/resources/mod-crash.js: Removed.
  • fast/js/resources/modify-non-references.js: Removed.
  • fast/js/resources/named-function-expression.js: Removed.
  • fast/js/resources/navigator-mimeTypes-length.js: Removed.
  • fast/js/resources/nested-object-gc.js: Removed.
  • fast/js/resources/non-object-proto.js: Removed.
  • fast/js/resources/null-char-in-string.js: Removed.
  • fast/js/resources/number-cell-reuse.js: Removed.
  • fast/js/resources/number-parsing-crash.js: Removed.
  • fast/js/resources/number-toExponential.js: Removed.
  • fast/js/resources/number-toString.js: Removed.
  • fast/js/resources/number-tofixed.js: Removed.
  • fast/js/resources/number-toprecision.js: Removed.
  • fast/js/resources/numeric-conversion.js: Removed.
  • fast/js/resources/object-extra-comma.js: Removed.
  • fast/js/resources/object-prototype-constructor.js: Removed.
  • fast/js/resources/object-prototype-toLocaleString.js: Removed.
  • fast/js/resources/order-of-operations.js: Removed.
  • fast/js/resources/parse-backslash-before-newline.js: Removed.
  • fast/js/resources/postfix-syntax.js: Removed.
  • fast/js/resources/prefix-syntax.js: Removed.
  • fast/js/resources/pretty-print.js: Removed.
  • fast/js/resources/primitive-method-this.js: Removed.
  • fast/js/resources/primitive-property-access-edge-cases.js: Removed.
  • fast/js/resources/property-getters-and-setters.js: Removed.
  • fast/js/resources/propertyIsEnumerable.js: Removed.
  • fast/js/resources/prototypes.js: Removed.
  • fast/js/resources/read-modify-eval.js: Removed.
  • fast/js/resources/recursion-limit-equal.js: Removed.
  • fast/js/resources/reentrant-call-unwind.js: Removed.
  • fast/js/resources/regexp-backreferences.js: Removed.
  • fast/js/resources/regexp-char-insensitive.js: Removed.
  • fast/js/resources/regexp-character-match-out-of-order.js: Removed.
  • fast/js/resources/regexp-compile-crash.js: Removed.
  • fast/js/resources/regexp-compile.js: Removed.
  • fast/js/resources/regexp-divequal.js: Removed.
  • fast/js/resources/regexp-extended-characters-crash.js: Removed.
  • fast/js/resources/regexp-extended-characters-match.js: Removed.
  • fast/js/resources/regexp-extended-characters-more.js: Removed.
  • fast/js/resources/regexp-find-first-asserted.js: Removed.
  • fast/js/resources/regexp-lastindex.js: Removed.
  • fast/js/resources/regexp-many-brackets.js: Removed.
  • fast/js/resources/regexp-negative-special-characters.js: Removed.
  • fast/js/resources/regexp-no-extensions.js: Removed.
  • fast/js/resources/regexp-non-bmp.js: Removed.
  • fast/js/resources/regexp-non-capturing-groups.js: Removed.
  • fast/js/resources/regexp-non-character.js: Removed.
  • fast/js/resources/regexp-overflow-too-big.js: Removed.
  • fast/js/resources/regexp-overflow.js: Removed.
  • fast/js/resources/regexp-range-bound-ffff.js: Removed.
  • fast/js/resources/regexp-range-out-of-order.js: Removed.
  • fast/js/resources/regexp-ranges-and-escaped-hyphens.js: Removed.
  • fast/js/resources/regexp-stack-overflow.js: Removed.
  • fast/js/resources/regexp-unicode-handling.js: Removed.
  • fast/js/resources/regexp-unicode-overflow.js: Removed.
  • fast/js/resources/registerCachingAcrossBranchTargets.js: Removed.
  • fast/js/resources/rehash-assign.js: Removed.
  • fast/js/resources/removing-Cf-characters.js: Removed.
  • fast/js/resources/reparsing-semicolon-insertion.js: Removed.
  • fast/js/resources/repeat-cached-vm-reentry.js: Removed.
  • fast/js/resources/reserved-words.js: Removed.
  • fast/js/resources/resize-array-assign.js: Removed.
  • fast/js/resources/select-options-add.js: Removed.
  • fast/js/resources/slash-lineterminator-parse.js: Removed.
  • fast/js/resources/sort-large-array.js: Removed.
  • fast/js/resources/sort-no-jit-code-crash.js: Removed.
  • fast/js/resources/sort-non-numbers.js: Removed.
  • fast/js/resources/sort-randomly.js: Removed.
  • fast/js/resources/sort-stability.js: Removed.
  • fast/js/resources/sparse-array.js: Removed.
  • fast/js/resources/stack-unwinding.js: Removed.
  • fast/js/resources/statement-list-register-crash.js: Removed.
  • fast/js/resources/static-scope-object.js: Removed.
  • fast/js/resources/string-capitalization.js: Removed.
  • fast/js/resources/string-from-char-code.js: Removed.
  • fast/js/resources/string-index-overflow.js: Removed.
  • fast/js/resources/string-property-iteration.js: Removed.
  • fast/js/resources/string-replace-2.js: Removed.
  • fast/js/resources/string-replace-3.js: Removed.
  • fast/js/resources/string-slice-abnormal-values.js: Removed.
  • fast/js/resources/string-sort.js: Removed.
  • fast/js/resources/string-split-ignore-case.js: Removed.
  • fast/js/resources/string-substr.js: Removed.
  • fast/js/resources/string_replace.js: Removed.
  • fast/js/resources/switch-behaviour.js: Removed.
  • fast/js/resources/this-non-object-proto.js: Removed.
  • fast/js/resources/toString-elision-trailing-comma.js: Removed.
  • fast/js/resources/toString-exception.js: Removed.
  • fast/js/resources/toString-for-var-decl.js: Removed.
  • fast/js/resources/toString-number-dot-expr.js: Removed.
  • fast/js/resources/toString-overrides.js: Removed.
  • fast/js/resources/toString-prefix-postfix-preserve-parens.js: Removed.
  • fast/js/resources/toString-stack-overflow.js: Removed.
  • fast/js/resources/tostring-exception-in-property-access.js: Removed.
  • fast/js/resources/transition-cache-dictionary-crash.js: Removed.
  • fast/js/resources/typeof-codegen-crash.js: Removed.
  • fast/js/resources/typeof-constant-string.js: Removed.
  • fast/js/resources/typeof-syntax.js: Removed.
  • fast/js/resources/unexpected-constant-crash.js: Removed.
  • fast/js/resources/unmatching-argument-count.js: Removed.
  • fast/js/resources/var-shadows-arg-crash.js: Removed.
  • fast/js/resources/var-shadows-arg-gc-crash.js: Removed.
  • fast/js/resources/vardecl-blocks-init.js: Removed.
  • fast/js/resources/vardecl-preserve-arguments.js: Removed.
  • fast/js/resources/with-scope-gc.js: Removed.
  • fast/js/script-tests: Added.
  • fast/js/script-tests/Array-isArray.js: Copied from LayoutTests/fast/js/resources/Array-isArray.js.
  • fast/js/script-tests/JSON-parse-reviver.js: Copied from LayoutTests/fast/js/resources/JSON-parse-reviver.js.
  • fast/js/script-tests/JSON-stringify-replacer.js: Copied from LayoutTests/fast/js/resources/JSON-stringify-replacer.js.
  • fast/js/script-tests/Object-create.js: Copied from LayoutTests/fast/js/resources/Object-create.js.
  • fast/js/script-tests/Object-defineProperties.js: Copied from LayoutTests/fast/js/resources/Object-defineProperties.js.
  • fast/js/script-tests/Object-defineProperty.js: Copied from LayoutTests/fast/js/resources/Object-defineProperty.js.
  • fast/js/script-tests/Object-keys.js: Copied from LayoutTests/fast/js/resources/Object-keys.js.
  • fast/js/script-tests/TEMPLATE.html: Copied from LayoutTests/fast/js/resources/TEMPLATE.html.
  • fast/js/script-tests/activation-proto.js: Copied from LayoutTests/fast/js/resources/activation-proto.js.
  • fast/js/script-tests/arguments-bad-index.js: Copied from LayoutTests/fast/js/resources/arguments-bad-index.js.
  • fast/js/script-tests/arguments.js: Copied from LayoutTests/fast/js/resources/arguments.js.
  • fast/js/script-tests/array-enumerators-functions.js: Copied from LayoutTests/fast/js/resources/array-enumerators-functions.js.
  • fast/js/script-tests/array-every.js: Copied from LayoutTests/fast/js/resources/array-every.js.
  • fast/js/script-tests/array-filter.js: Copied from LayoutTests/fast/js/resources/array-filter.js.
  • fast/js/script-tests/array-float-delete.js: Copied from LayoutTests/fast/js/resources/array-float-delete.js.
  • fast/js/script-tests/array-functions-non-arrays.js: Copied from LayoutTests/fast/js/resources/array-functions-non-arrays.js.
  • fast/js/script-tests/array-holes.js: Copied from LayoutTests/fast/js/resources/array-holes.js.
  • fast/js/script-tests/array-index-immediate-types.js: Copied from LayoutTests/fast/js/resources/array-index-immediate-types.js.
  • fast/js/script-tests/array-indexing.js: Copied from LayoutTests/fast/js/resources/array-indexing.js.
  • fast/js/script-tests/array-iterate-backwards.js: Copied from LayoutTests/fast/js/resources/array-iterate-backwards.js.
  • fast/js/script-tests/array-join-bug-11524.js: Copied from LayoutTests/fast/js/resources/array-join-bug-11524.js.
  • fast/js/script-tests/array-lastIndexOf.js: Copied from LayoutTests/fast/js/resources/array-lastIndexOf.js.
  • fast/js/script-tests/array-reduce.js: Copied from LayoutTests/fast/js/resources/array-reduce.js.
  • fast/js/script-tests/array-reduceRight.js: Copied from LayoutTests/fast/js/resources/array-reduceRight.js.
  • fast/js/script-tests/array-reset-large-index.js: Copied from LayoutTests/fast/js/resources/array-reset-large-index.js.
  • fast/js/script-tests/array-sort-reentrance.js: Copied from LayoutTests/fast/js/resources/array-sort-reentrance.js.
  • fast/js/script-tests/array-splice.js: Copied from LayoutTests/fast/js/resources/array-splice.js.
  • fast/js/script-tests/array-tostring-and-join.js: Copied from LayoutTests/fast/js/resources/array-tostring-and-join.js.
  • fast/js/script-tests/array-tostring-ignore-separator.js: Copied from LayoutTests/fast/js/resources/array-tostring-ignore-separator.js.
  • fast/js/script-tests/assign.js: Copied from LayoutTests/fast/js/resources/assign.js.
  • fast/js/script-tests/avl-crash.js: Copied from LayoutTests/fast/js/resources/avl-crash.js.
  • fast/js/script-tests/cached-eval-gc.js: Copied from LayoutTests/fast/js/resources/cached-eval-gc.js.
  • fast/js/script-tests/caller-property.js: Copied from LayoutTests/fast/js/resources/caller-property.js.
  • fast/js/script-tests/char-at.js: Copied from LayoutTests/fast/js/resources/char-at.js.
  • fast/js/script-tests/closure-inside-extra-arg-call.js: Copied from LayoutTests/fast/js/resources/closure-inside-extra-arg-call.js.
  • fast/js/script-tests/code-serialize-paren.js: Copied from LayoutTests/fast/js/resources/code-serialize-paren.js.
  • fast/js/script-tests/codegen-loops-logical-nodes.js: Copied from LayoutTests/fast/js/resources/codegen-loops-logical-nodes.js.
  • fast/js/script-tests/codegen-peephole-locals.js: Copied from LayoutTests/fast/js/resources/codegen-peephole-locals.js.
  • fast/js/script-tests/codegen-temporaries.js: Copied from LayoutTests/fast/js/resources/codegen-temporaries.js.
  • fast/js/script-tests/comparefn-sort-stability.js: Copied from LayoutTests/fast/js/resources/comparefn-sort-stability.js.
  • fast/js/script-tests/const-without-initializer.js: Copied from LayoutTests/fast/js/resources/const-without-initializer.js.
  • fast/js/script-tests/constant-count.js: Copied from LayoutTests/fast/js/resources/constant-count.js.
  • fast/js/script-tests/constant-folding.js: Copied from LayoutTests/fast/js/resources/constant-folding.js.
  • fast/js/script-tests/constructor-attributes.js: Copied from LayoutTests/fast/js/resources/constructor-attributes.js.
  • fast/js/script-tests/constructor.js: Copied from LayoutTests/fast/js/resources/constructor.js.
  • fast/js/script-tests/continue-break-multiple-labels.js: Copied from LayoutTests/fast/js/resources/continue-break-multiple-labels.js.
  • fast/js/script-tests/convert-nan-to-bool.js: Copied from LayoutTests/fast/js/resources/convert-nan-to-bool.js.
  • fast/js/script-tests/cyclic-proto.js: Copied from LayoutTests/fast/js/resources/cyclic-proto.js.
  • fast/js/script-tests/cyclic-prototypes.js: Copied from LayoutTests/fast/js/resources/cyclic-prototypes.js.
  • fast/js/script-tests/cyclic-ref-toString.js: Copied from LayoutTests/fast/js/resources/cyclic-ref-toString.js.
  • fast/js/script-tests/date-DST-pre-1970.js: Copied from LayoutTests/fast/js/resources/date-DST-pre-1970.js.
  • fast/js/script-tests/date-DST-time-cusps.js: Copied from LayoutTests/fast/js/resources/date-DST-time-cusps.js.
  • fast/js/script-tests/date-big-constructor.js: Copied from LayoutTests/fast/js/resources/date-big-constructor.js.
  • fast/js/script-tests/date-big-setdate.js: Copied from LayoutTests/fast/js/resources/date-big-setdate.js.
  • fast/js/script-tests/date-big-setmonth.js: Copied from LayoutTests/fast/js/resources/date-big-setmonth.js.
  • fast/js/script-tests/date-constructor.js: Copied from LayoutTests/fast/js/resources/date-constructor.js.
  • fast/js/script-tests/date-negative-setmonth.js: Copied from LayoutTests/fast/js/resources/date-negative-setmonth.js.
  • fast/js/script-tests/date-parse-comments-test.js: Copied from LayoutTests/fast/js/resources/date-parse-comments-test.js.
  • fast/js/script-tests/date-parse-test.js: Copied from LayoutTests/fast/js/resources/date-parse-test.js.
  • fast/js/script-tests/date-preserve-milliseconds.js: Copied from LayoutTests/fast/js/resources/date-preserve-milliseconds.js.
  • fast/js/script-tests/date-proto-generic-invocation.js: Copied from LayoutTests/fast/js/resources/date-proto-generic-invocation.js.
  • fast/js/script-tests/date-set-to-nan.js: Copied from LayoutTests/fast/js/resources/date-set-to-nan.js.
  • fast/js/script-tests/date-toisostring.js: Copied from LayoutTests/fast/js/resources/date-toisostring.js.
  • fast/js/script-tests/debugger.js: Copied from LayoutTests/fast/js/resources/debugger.js.
  • fast/js/script-tests/declaration-in-block.js: Copied from LayoutTests/fast/js/resources/declaration-in-block.js.
  • fast/js/script-tests/delete-getters-setters.js: Copied from LayoutTests/fast/js/resources/delete-getters-setters.js.
  • fast/js/script-tests/delete-syntax.js: Copied from LayoutTests/fast/js/resources/delete-syntax.js.
  • fast/js/script-tests/delete-then-put.js: Copied from LayoutTests/fast/js/resources/delete-then-put.js.
  • fast/js/script-tests/dictionary-no-cache.js: Copied from LayoutTests/fast/js/resources/dictionary-no-cache.js.
  • fast/js/script-tests/do-while-semicolon.js: Copied from LayoutTests/fast/js/resources/do-while-semicolon.js.
  • fast/js/script-tests/dot-node-base-exception.js: Copied from LayoutTests/fast/js/resources/dot-node-base-exception.js.
  • fast/js/script-tests/duplicate-param-crash.js: Copied from LayoutTests/fast/js/resources/duplicate-param-crash.js.
  • fast/js/script-tests/duplicate-param-gc-crash.js: Copied from LayoutTests/fast/js/resources/duplicate-param-gc-crash.js.
  • fast/js/script-tests/equality.js: Copied from LayoutTests/fast/js/resources/equality.js.
  • fast/js/script-tests/eval-cache-crash.js: Copied from LayoutTests/fast/js/resources/eval-cache-crash.js.
  • fast/js/script-tests/eval-throw-return.js: Copied from LayoutTests/fast/js/resources/eval-throw-return.js.
  • fast/js/script-tests/eval-var-decl.js: Copied from LayoutTests/fast/js/resources/eval-var-decl.js.
  • fast/js/script-tests/exception-expression-offset.js: Copied from LayoutTests/fast/js/resources/exception-expression-offset.js.
  • fast/js/script-tests/exception-for-nonobject.js: Copied from LayoutTests/fast/js/resources/exception-for-nonobject.js.
  • fast/js/script-tests/exception-linenums.js: Copied from LayoutTests/fast/js/resources/exception-linenums.js.
  • fast/js/script-tests/exception-try-finally-scope-error.js: Copied from LayoutTests/fast/js/resources/exception-try-finally-scope-error.js.
  • fast/js/script-tests/exception-with-handler-inside-eval-with-dynamic-scope.js: Copied from LayoutTests/fast/js/resources/exception-with-handler-inside-eval-with-dynamic-scope.js.
  • fast/js/script-tests/excessive-comma-usage.js: Copied from LayoutTests/fast/js/resources/excessive-comma-usage.js.
  • fast/js/script-tests/finally-codegen-failure.js: Copied from LayoutTests/fast/js/resources/finally-codegen-failure.js.
  • fast/js/script-tests/for-in-avoid-duplicates.js: Copied from LayoutTests/fast/js/resources/for-in-avoid-duplicates.js.
  • fast/js/script-tests/for-in-cached.js: Copied from LayoutTests/fast/js/resources/for-in-cached.js.
  • fast/js/script-tests/for-in-exeception.js: Copied from LayoutTests/fast/js/resources/for-in-exeception.js.
  • fast/js/script-tests/for-in-to-text.js: Copied from LayoutTests/fast/js/resources/for-in-to-text.js.
  • fast/js/script-tests/for-in-var-scope.js: Copied from LayoutTests/fast/js/resources/for-in-var-scope.js.
  • fast/js/script-tests/function-apply-aliased.js: Copied from LayoutTests/fast/js/resources/function-apply-aliased.js.
  • fast/js/script-tests/function-apply.js: Copied from LayoutTests/fast/js/resources/function-apply.js.
  • fast/js/script-tests/function-call-aliased.js: Copied from LayoutTests/fast/js/resources/function-call-aliased.js.
  • fast/js/script-tests/function-call-register-allocation.js: Copied from LayoutTests/fast/js/resources/function-call-register-allocation.js.
  • fast/js/script-tests/function-constructor-newline-after-brace.js: Copied from LayoutTests/fast/js/resources/function-constructor-newline-after-brace.js.
  • fast/js/script-tests/function-constructor-single-line-comment.js: Copied from LayoutTests/fast/js/resources/function-constructor-single-line-comment.js.
  • fast/js/script-tests/function-declaration-statement.js: Copied from LayoutTests/fast/js/resources/function-declaration-statement.js.
  • fast/js/script-tests/function-declaration.js: Copied from LayoutTests/fast/js/resources/function-declaration.js.
  • fast/js/script-tests/function-declarations-in-switch-statement.js: Copied from LayoutTests/fast/js/resources/function-declarations-in-switch-statement.js.
  • fast/js/script-tests/function-dot-arguments.js: Copied from LayoutTests/fast/js/resources/function-dot-arguments.js.
  • fast/js/script-tests/function-name.js: Copied from LayoutTests/fast/js/resources/function-name.js.
  • fast/js/script-tests/function-names.js: Copied from LayoutTests/fast/js/resources/function-names.js.
  • fast/js/script-tests/function-toString-object-literals.js: Copied from LayoutTests/fast/js/resources/function-toString-object-literals.js.
  • fast/js/script-tests/function-toString-parentheses.js: Copied from LayoutTests/fast/js/resources/function-toString-parentheses.js.
  • fast/js/script-tests/function-toString-semicolon-insertion.js: Copied from LayoutTests/fast/js/resources/function-toString-semicolon-insertion.js.
  • fast/js/script-tests/getter-setter-gc.js: Copied from LayoutTests/fast/js/resources/getter-setter-gc.js.
  • fast/js/script-tests/global-constructors.js: Copied from LayoutTests/fast/js/resources/global-constructors.js.
  • fast/js/script-tests/global-function-resolve.js: Copied from LayoutTests/fast/js/resources/global-function-resolve.js.
  • fast/js/script-tests/gmail-re-re.js: Copied from LayoutTests/fast/js/resources/gmail-re-re.js.
  • fast/js/script-tests/has-own-property.js: Copied from LayoutTests/fast/js/resources/has-own-property.js.
  • fast/js/script-tests/ignored-result-null-comparison-crash.js: Copied from LayoutTests/fast/js/resources/ignored-result-null-comparison-crash.js.
  • fast/js/script-tests/ignored-result-ref-crash.js: Copied from LayoutTests/fast/js/resources/ignored-result-ref-crash.js.
  • fast/js/script-tests/implicit-call-with-global-reentry.js: Copied from LayoutTests/fast/js/resources/implicit-call-with-global-reentry.js.
  • fast/js/script-tests/instance-of-immediates.js: Copied from LayoutTests/fast/js/resources/instance-of-immediates.js.
  • fast/js/script-tests/instanceof-operator.js: Copied from LayoutTests/fast/js/resources/instanceof-operator.js.
  • fast/js/script-tests/integer-extremes.js: Copied from LayoutTests/fast/js/resources/integer-extremes.js.
  • fast/js/script-tests/isPrototypeOf.js: Copied from LayoutTests/fast/js/resources/isPrototypeOf.js.
  • fast/js/script-tests/large-expressions.js: Copied from LayoutTests/fast/js/resources/large-expressions.js.
  • fast/js/script-tests/lastModified.js: Copied from LayoutTests/fast/js/resources/lastModified.js.
  • fast/js/script-tests/logical-or-jless.js: Copied from LayoutTests/fast/js/resources/logical-or-jless.js.
  • fast/js/script-tests/math-transforms.js: Copied from LayoutTests/fast/js/resources/math-transforms.js.
  • fast/js/script-tests/math.js: Copied from LayoutTests/fast/js/resources/math.js.
  • fast/js/script-tests/method-check.js: Copied from LayoutTests/fast/js/resources/method-check.js.
  • fast/js/script-tests/mod-crash.js: Copied from LayoutTests/fast/js/resources/mod-crash.js.
  • fast/js/script-tests/modify-non-references.js: Copied from LayoutTests/fast/js/resources/modify-non-references.js.
  • fast/js/script-tests/named-function-expression.js: Copied from LayoutTests/fast/js/resources/named-function-expression.js.
  • fast/js/script-tests/navigator-mimeTypes-length.js: Copied from LayoutTests/fast/js/resources/navigator-mimeTypes-length.js.
  • fast/js/script-tests/nested-object-gc.js: Copied from LayoutTests/fast/js/resources/nested-object-gc.js.
  • fast/js/script-tests/non-object-proto.js: Copied from LayoutTests/fast/js/resources/non-object-proto.js.
  • fast/js/script-tests/null-char-in-string.js: Copied from LayoutTests/fast/js/resources/null-char-in-string.js.
  • fast/js/script-tests/number-cell-reuse.js: Copied from LayoutTests/fast/js/resources/number-cell-reuse.js.
  • fast/js/script-tests/number-parsing-crash.js: Copied from LayoutTests/fast/js/resources/number-parsing-crash.js.
  • fast/js/script-tests/number-toExponential.js: Copied from LayoutTests/fast/js/resources/number-toExponential.js.
  • fast/js/script-tests/number-toString.js: Copied from LayoutTests/fast/js/resources/number-toString.js.
  • fast/js/script-tests/number-tofixed.js: Copied from LayoutTests/fast/js/resources/number-tofixed.js.
  • fast/js/script-tests/number-toprecision.js: Copied from LayoutTests/fast/js/resources/number-toprecision.js.
  • fast/js/script-tests/numeric-conversion.js: Copied from LayoutTests/fast/js/resources/numeric-conversion.js.
  • fast/js/script-tests/object-extra-comma.js: Copied from LayoutTests/fast/js/resources/object-extra-comma.js.
  • fast/js/script-tests/object-prototype-constructor.js: Copied from LayoutTests/fast/js/resources/object-prototype-constructor.js.
  • fast/js/script-tests/object-prototype-toLocaleString.js: Copied from LayoutTests/fast/js/resources/object-prototype-toLocaleString.js.
  • fast/js/script-tests/order-of-operations.js: Copied from LayoutTests/fast/js/resources/order-of-operations.js.
  • fast/js/script-tests/parse-backslash-before-newline.js: Copied from LayoutTests/fast/js/resources/parse-backslash-before-newline.js.
  • fast/js/script-tests/postfix-syntax.js: Copied from LayoutTests/fast/js/resources/postfix-syntax.js.
  • fast/js/script-tests/prefix-syntax.js: Copied from LayoutTests/fast/js/resources/prefix-syntax.js.
  • fast/js/script-tests/pretty-print.js: Copied from LayoutTests/fast/js/resources/pretty-print.js.
  • fast/js/script-tests/primitive-method-this.js: Copied from LayoutTests/fast/js/resources/primitive-method-this.js.
  • fast/js/script-tests/primitive-property-access-edge-cases.js: Copied from LayoutTests/fast/js/resources/primitive-property-access-edge-cases.js.
  • fast/js/script-tests/property-getters-and-setters.js: Copied from LayoutTests/fast/js/resources/property-getters-and-setters.js.
  • fast/js/script-tests/propertyIsEnumerable.js: Copied from LayoutTests/fast/js/resources/propertyIsEnumerable.js.
  • fast/js/script-tests/prototypes.js: Copied from LayoutTests/fast/js/resources/prototypes.js.
  • fast/js/script-tests/read-modify-eval.js: Copied from LayoutTests/fast/js/resources/read-modify-eval.js.
  • fast/js/script-tests/recursion-limit-equal.js: Copied from LayoutTests/fast/js/resources/recursion-limit-equal.js.
  • fast/js/script-tests/reentrant-call-unwind.js: Copied from LayoutTests/fast/js/resources/reentrant-call-unwind.js.
  • fast/js/script-tests/regexp-backreferences.js: Copied from LayoutTests/fast/js/resources/regexp-backreferences.js.
  • fast/js/script-tests/regexp-char-insensitive.js: Copied from LayoutTests/fast/js/resources/regexp-char-insensitive.js.
  • fast/js/script-tests/regexp-character-match-out-of-order.js: Copied from LayoutTests/fast/js/resources/regexp-character-match-out-of-order.js.
  • fast/js/script-tests/regexp-compile-crash.js: Copied from LayoutTests/fast/js/resources/regexp-compile-crash.js.
  • fast/js/script-tests/regexp-compile.js: Copied from LayoutTests/fast/js/resources/regexp-compile.js.
  • fast/js/script-tests/regexp-divequal.js: Copied from LayoutTests/fast/js/resources/regexp-divequal.js.
  • fast/js/script-tests/regexp-extended-characters-crash.js: Copied from LayoutTests/fast/js/resources/regexp-extended-characters-crash.js.
  • fast/js/script-tests/regexp-extended-characters-match.js: Copied from LayoutTests/fast/js/resources/regexp-extended-characters-match.js.
  • fast/js/script-tests/regexp-extended-characters-more.js: Copied from LayoutTests/fast/js/resources/regexp-extended-characters-more.js.
  • fast/js/script-tests/regexp-find-first-asserted.js: Copied from LayoutTests/fast/js/resources/regexp-find-first-asserted.js.
  • fast/js/script-tests/regexp-lastindex.js: Copied from LayoutTests/fast/js/resources/regexp-lastindex.js.
  • fast/js/script-tests/regexp-many-brackets.js: Copied from LayoutTests/fast/js/resources/regexp-many-brackets.js.
  • fast/js/script-tests/regexp-negative-special-characters.js: Copied from LayoutTests/fast/js/resources/regexp-negative-special-characters.js.
  • fast/js/script-tests/regexp-no-extensions.js: Copied from LayoutTests/fast/js/resources/regexp-no-extensions.js.
  • fast/js/script-tests/regexp-non-bmp.js: Copied from LayoutTests/fast/js/resources/regexp-non-bmp.js.
  • fast/js/script-tests/regexp-non-capturing-groups.js: Copied from LayoutTests/fast/js/resources/regexp-non-capturing-groups.js.
  • fast/js/script-tests/regexp-non-character.js: Copied from LayoutTests/fast/js/resources/regexp-non-character.js.
  • fast/js/script-tests/regexp-overflow-too-big.js: Copied from LayoutTests/fast/js/resources/regexp-overflow-too-big.js.
  • fast/js/script-tests/regexp-overflow.js: Copied from LayoutTests/fast/js/resources/regexp-overflow.js.
  • fast/js/script-tests/regexp-range-bound-ffff.js: Copied from LayoutTests/fast/js/resources/regexp-range-bound-ffff.js.
  • fast/js/script-tests/regexp-range-out-of-order.js: Copied from LayoutTests/fast/js/resources/regexp-range-out-of-order.js.
  • fast/js/script-tests/regexp-ranges-and-escaped-hyphens.js: Copied from LayoutTests/fast/js/resources/regexp-ranges-and-escaped-hyphens.js.
  • fast/js/script-tests/regexp-stack-overflow.js: Copied from LayoutTests/fast/js/resources/regexp-stack-overflow.js.
  • fast/js/script-tests/regexp-unicode-handling.js: Copied from LayoutTests/fast/js/resources/regexp-unicode-handling.js.
  • fast/js/script-tests/regexp-unicode-overflow.js: Copied from LayoutTests/fast/js/resources/regexp-unicode-overflow.js.
  • fast/js/script-tests/registerCachingAcrossBranchTargets.js: Copied from LayoutTests/fast/js/resources/registerCachingAcrossBranchTargets.js.
  • fast/js/script-tests/rehash-assign.js: Copied from LayoutTests/fast/js/resources/rehash-assign.js.
  • fast/js/script-tests/removing-Cf-characters.js: Copied from LayoutTests/fast/js/resources/removing-Cf-characters.js.
  • fast/js/script-tests/reparsing-semicolon-insertion.js: Copied from LayoutTests/fast/js/resources/reparsing-semicolon-insertion.js.
  • fast/js/script-tests/repeat-cached-vm-reentry.js: Copied from LayoutTests/fast/js/resources/repeat-cached-vm-reentry.js.
  • fast/js/script-tests/reserved-words.js: Copied from LayoutTests/fast/js/resources/reserved-words.js.
  • fast/js/script-tests/resize-array-assign.js: Copied from LayoutTests/fast/js/resources/resize-array-assign.js.
  • fast/js/script-tests/select-options-add.js: Copied from LayoutTests/fast/js/resources/select-options-add.js.
  • fast/js/script-tests/slash-lineterminator-parse.js: Copied from LayoutTests/fast/js/resources/slash-lineterminator-parse.js.
  • fast/js/script-tests/sort-large-array.js: Copied from LayoutTests/fast/js/resources/sort-large-array.js.
  • fast/js/script-tests/sort-no-jit-code-crash.js: Copied from LayoutTests/fast/js/resources/sort-no-jit-code-crash.js.
  • fast/js/script-tests/sort-non-numbers.js: Copied from LayoutTests/fast/js/resources/sort-non-numbers.js.
  • fast/js/script-tests/sort-randomly.js: Copied from LayoutTests/fast/js/resources/sort-randomly.js.
  • fast/js/script-tests/sort-stability.js: Copied from LayoutTests/fast/js/resources/sort-stability.js.
  • fast/js/script-tests/sparse-array.js: Copied from LayoutTests/fast/js/resources/sparse-array.js.
  • fast/js/script-tests/stack-unwinding.js: Copied from LayoutTests/fast/js/resources/stack-unwinding.js.
  • fast/js/script-tests/statement-list-register-crash.js: Copied from LayoutTests/fast/js/resources/statement-list-register-crash.js.
  • fast/js/script-tests/static-scope-object.js: Copied from LayoutTests/fast/js/resources/static-scope-object.js.
  • fast/js/script-tests/string-capitalization.js: Copied from LayoutTests/fast/js/resources/string-capitalization.js.
  • fast/js/script-tests/string-from-char-code.js: Copied from LayoutTests/fast/js/resources/string-from-char-code.js.
  • fast/js/script-tests/string-index-overflow.js: Copied from LayoutTests/fast/js/resources/string-index-overflow.js.
  • fast/js/script-tests/string-property-iteration.js: Copied from LayoutTests/fast/js/resources/string-property-iteration.js.
  • fast/js/script-tests/string-replace-2.js: Copied from LayoutTests/fast/js/resources/string-replace-2.js.
  • fast/js/script-tests/string-replace-3.js: Copied from LayoutTests/fast/js/resources/string-replace-3.js.
  • fast/js/script-tests/string-slice-abnormal-values.js: Copied from LayoutTests/fast/js/resources/string-slice-abnormal-values.js.
  • fast/js/script-tests/string-sort.js: Copied from LayoutTests/fast/js/resources/string-sort.js.
  • fast/js/script-tests/string-split-ignore-case.js: Copied from LayoutTests/fast/js/resources/string-split-ignore-case.js.
  • fast/js/script-tests/string-substr.js: Copied from LayoutTests/fast/js/resources/string-substr.js.
  • fast/js/script-tests/string_replace.js: Copied from LayoutTests/fast/js/resources/string_replace.js.
  • fast/js/script-tests/switch-behaviour.js: Copied from LayoutTests/fast/js/resources/switch-behaviour.js.
  • fast/js/script-tests/this-non-object-proto.js: Copied from LayoutTests/fast/js/resources/this-non-object-proto.js.
  • fast/js/script-tests/toString-elision-trailing-comma.js: Copied from LayoutTests/fast/js/resources/toString-elision-trailing-comma.js.
  • fast/js/script-tests/toString-exception.js: Copied from LayoutTests/fast/js/resources/toString-exception.js.
  • fast/js/script-tests/toString-for-var-decl.js: Copied from LayoutTests/fast/js/resources/toString-for-var-decl.js.
  • fast/js/script-tests/toString-number-dot-expr.js: Copied from LayoutTests/fast/js/resources/toString-number-dot-expr.js.
  • fast/js/script-tests/toString-overrides.js: Copied from LayoutTests/fast/js/resources/toString-overrides.js.
  • fast/js/script-tests/toString-prefix-postfix-preserve-parens.js: Copied from LayoutTests/fast/js/resources/toString-prefix-postfix-preserve-parens.js.
  • fast/js/script-tests/toString-stack-overflow.js: Copied from LayoutTests/fast/js/resources/toString-stack-overflow.js.
  • fast/js/script-tests/tostring-exception-in-property-access.js: Copied from LayoutTests/fast/js/resources/tostring-exception-in-property-access.js.
  • fast/js/script-tests/transition-cache-dictionary-crash.js: Copied from LayoutTests/fast/js/resources/transition-cache-dictionary-crash.js.
  • fast/js/script-tests/typeof-codegen-crash.js: Copied from LayoutTests/fast/js/resources/typeof-codegen-crash.js.
  • fast/js/script-tests/typeof-constant-string.js: Copied from LayoutTests/fast/js/resources/typeof-constant-string.js.
  • fast/js/script-tests/typeof-syntax.js: Copied from LayoutTests/fast/js/resources/typeof-syntax.js.
  • fast/js/script-tests/unexpected-constant-crash.js: Copied from LayoutTests/fast/js/resources/unexpected-constant-crash.js.
  • fast/js/script-tests/unmatching-argument-count.js: Copied from LayoutTests/fast/js/resources/unmatching-argument-count.js.
  • fast/js/script-tests/var-shadows-arg-crash.js: Copied from LayoutTests/fast/js/resources/var-shadows-arg-crash.js.
  • fast/js/script-tests/var-shadows-arg-gc-crash.js: Copied from LayoutTests/fast/js/resources/var-shadows-arg-gc-crash.js.
  • fast/js/script-tests/vardecl-blocks-init.js: Copied from LayoutTests/fast/js/resources/vardecl-blocks-init.js.
  • fast/js/script-tests/vardecl-preserve-arguments.js: Copied from LayoutTests/fast/js/resources/vardecl-preserve-arguments.js.
  • fast/js/script-tests/with-scope-gc.js: Copied from LayoutTests/fast/js/resources/with-scope-gc.js.
  • fast/js/select-options-add.html:
  • fast/js/slash-lineterminator-parse.html:
  • fast/js/sort-large-array.html:
  • fast/js/sort-no-jit-code-crash.html:
  • fast/js/sort-non-numbers.html:
  • fast/js/sort-randomly.html:
  • fast/js/sort-stability.html:
  • fast/js/sparse-array.html:
  • fast/js/stack-unwinding.html:
  • fast/js/statement-list-register-crash.html:
  • fast/js/static-scope-object.html:
  • fast/js/string-capitalization.html:
  • fast/js/string-from-char-code.html:
  • fast/js/string-index-overflow.html:
  • fast/js/string-property-iteration.html:
  • fast/js/string-replace-2.html:
  • fast/js/string-replace-3.html:
  • fast/js/string-slice-abnormal-values.html:
  • fast/js/string-sort.html:
  • fast/js/string-split-ignore-case.html:
  • fast/js/string-substr.html:
  • fast/js/string_replace.html:
  • fast/js/switch-behaviour.html:
  • fast/js/this-non-object-proto.html:
  • fast/js/toString-elision-trailing-comma.html:
  • fast/js/toString-exception.html:
  • fast/js/toString-for-var-decl.html:
  • fast/js/toString-number-dot-expr.html:
  • fast/js/toString-overrides.html:
  • fast/js/toString-prefix-postfix-preserve-parens.html:
  • fast/js/toString-stack-overflow.html:
  • fast/js/tostring-exception-in-property-access.html:
  • fast/js/transition-cache-dictionary-crash.html:
  • fast/js/typeof-codegen-crash.html:
  • fast/js/typeof-constant-string.html:
  • fast/js/typeof-syntax.html:
  • fast/js/unexpected-constant-crash.html:
  • fast/js/unmatching-argument-count.html:
  • fast/js/var-shadows-arg-crash.html:
  • fast/js/var-shadows-arg-gc-crash.html:
  • fast/js/vardecl-blocks-init.html:
  • fast/js/vardecl-preserve-arguments.html:
  • fast/js/with-scope-gc.html:
2:15 PM Changeset in webkit [48650] by Darin Adler
  • 2 edits in trunk/JavaScriptCore
  • wtf/Forward.h: Added PassOwnPtr.

Reviewed by Sam Weinig.

2:11 PM Changeset in webkit [48649] by eric@webkit.org
  • 2 edits in trunk/WebKitTools

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

Reviewed by Darin Adler.

run-webkit-tests needs a --repeat-each=N option (AAABBBCCC instead of ABCABCABC)
https://bugs.webkit.org/show_bug.cgi?id=29220

  • Scripts/run-webkit-tests:
1:38 PM Changeset in webkit [48648] by weinig@apple.com
  • 2 edits in trunk/WebKit/win

Rubber-stamped by Adam Roben.

Remove accidentally left in declaration of reloadFromOrigin in IWebFramePrivate.idl

  • Interfaces/IWebFramePrivate.idl:
1:19 PM Changeset in webkit [48647] by Beth Dakin
  • 6 edits
    24 adds in trunk

WebCore: Fix for <rdar://problem/6925121> SAP: Wrong width calculation in
table with fixed layout
-and corresponding-
https://bugs.webkit.org/show_bug.cgi?id=29501

Reviewed by Dave Hyatt.

New Tests:

  • fast/table/fixed-table-with-percent-inside-percent-table.html: Added.
  • fast/table/fixed-table-with-percent-width-inside-auto-table.html: Added.
  • fast/table/fixed-table-with-percent-width-inside-div.html: Added.
  • fast/table/fixed-table-with-percent-width-inside-extra-large-div.html: Added.
  • fast/table/fixed-table-with-percent-width-inside-fixed-width-table.html: Added.
  • fast/table/fixed-table-with-small-percent-width.html: Added.

This new quirk is very similar to an existing one that was
implemented in revision 4316.

  • rendering/FixedTableLayout.cpp:

(WebCore::FixedTableLayout::calcPrefWidths):

LayoutTests: Tests for <rdar://problem/6925121> SAP: Wrong width calculation in
table with fixed layout
-and corresponding-
https://bugs.webkit.org/show_bug.cgi?id=29501

Reviewed by Dave Hyatt.

  • fast/table/fixed-table-with-percent-inside-percent-table.html: Added.
  • fast/table/fixed-table-with-percent-width-inside-auto-table.html: Added.
  • fast/table/fixed-table-with-percent-width-inside-div.html: Added.
  • fast/table/fixed-table-with-percent-width-inside-extra-large-div.html: Added.
  • fast/table/fixed-table-with-percent-width-inside-fixed-width-table.html: Added.
  • fast/table/fixed-table-with-small-percent-width.html: Added.
  • platform/mac/fast/table/fixed-table-with-percent-inside-percent-table-expected.checksum: Added.
  • platform/mac/fast/table/fixed-table-with-percent-inside-percent-table-expected.png: Added.
  • platform/mac/fast/table/fixed-table-with-percent-inside-percent-table-expected.txt: Added.
  • platform/mac/fast/table/fixed-table-with-percent-width-inside-auto-table-expected.checksum: Added.
  • platform/mac/fast/table/fixed-table-with-percent-width-inside-auto-table-expected.png: Added.
  • platform/mac/fast/table/fixed-table-with-percent-width-inside-auto-table-expected.txt: Added.
  • platform/mac/fast/table/fixed-table-with-percent-width-inside-div-expected.checksum: Added.
  • platform/mac/fast/table/fixed-table-with-percent-width-inside-div-expected.png: Added.
  • platform/mac/fast/table/fixed-table-with-percent-width-inside-div-expected.txt: Added.
  • platform/mac/fast/table/fixed-table-with-percent-width-inside-extra-large-div-expected.checksum: Added.
  • platform/mac/fast/table/fixed-table-with-percent-width-inside-extra-large-div-expected.png: Added.
  • platform/mac/fast/table/fixed-table-with-percent-width-inside-extra-large-div-expected.txt: Added.
  • platform/mac/fast/table/fixed-table-with-percent-width-inside-fixed-width-table-expected.checksum: Added.
  • platform/mac/fast/table/fixed-table-with-percent-width-inside-fixed-width-table-expected.png: Added.
  • platform/mac/fast/table/fixed-table-with-percent-width-inside-fixed-width-table-expected.txt: Added.
  • platform/mac/fast/table/fixed-table-with-small-percent-width-expected.checksum: Added.
  • platform/mac/fast/table/fixed-table-with-small-percent-width-expected.png: Added.
  • platform/mac/fast/table/fixed-table-with-small-percent-width-expected.txt: Added.

New and improved results for this test.

  • platform/mac/tables/mozilla/bugs/bug34176-expected.checksum:
  • platform/mac/tables/mozilla/bugs/bug34176-expected.png:
  • platform/mac/tables/mozilla/bugs/bug34176-expected.txt:
1:11 PM Changeset in webkit [48646] by bweinstein@apple.com
  • 6 edits
    3 adds in trunk/WebCore

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

Reviewed by Timothy Hatcher.

List HTTP status code with response headers in resources tab of Web Inspector.
http://webkit.org/b/19945

This patch adds a new top level list in the resources tab, HTTP Information, that
for now, contains the Request Method (GET, POST, etc.) and the Status Code (200, 404, etc.).
Additionally, it adds a colored dot next to the requested URL to show the status
(green for success, orange for redirect, red for error).

  • English.lproj/localizedStrings.js:
  • inspector/front-end/ImageView.js: (WebInspector.ImageView):
  • inspector/front-end/Images/errorRedDot.png: Added.
  • inspector/front-end/Images/successGreenDot.png: Added.
  • inspector/front-end/Images/warningOrangeDot.png: Added.
  • inspector/front-end/Resource.js: (WebInspector.Resource.StatusTextForCode):
  • inspector/front-end/ResourceView.js: (WebInspector.ResourceView): (WebInspector.ResourceView.prototype._refreshURL): (WebInspector.ResourceView.prototype._refreshHTTPInformation):
  • inspector/front-end/inspector.css:
1:06 PM Changeset in webkit [48645] by weinig@apple.com
  • 8 edits in trunk/WebKit/win

Fix for <rdar://problem/6451745>
Windows WebKit needs to implement reloadFromOrigin()

Reviewed by Steve Falkenburg.

  • Interfaces/IWebFrame.idl:
  • Interfaces/IWebFramePrivate.idl:
  • Interfaces/IWebView.idl:
  • WebFrame.cpp:

(WebFrame::reloadFromOrigin):

  • WebFrame.h:
  • WebView.cpp:

(WebView::reloadFromOrigin):

  • WebView.h:
1:04 PM Changeset in webkit [48644] by beidson@apple.com
  • 4 edits
    3 adds in trunk

Back list isn't properly updated for fragment changes after a redirect.
<rdar://problem/6142803> and https://bugs.webkit.org/show_bug.cgi?id=20355

Reviewed by Darin Adler.

WebCore:

Test: fast/loader/fragment-after-redirect-gets-back-entry.html

  • loader/FrameLoader.cpp:

(WebCore::FrameLoader::loadURL): Properly reset the policy FrameLoadType before

consulting the policy delegate for fragment scrolling.

LayoutTests:

  • fast/loader/fragment-after-redirect-gets-back-entry-expected.txt: Added.
  • fast/loader/fragment-after-redirect-gets-back-entry.html: Added.
  • fast/loader/resources/click-fragment-link.html: Added.
  • http/tests/navigation/relativeanchor-frames-expected.txt: Updated results (a progression!)
12:29 PM Changeset in webkit [48643] by Adam Roben
  • 2 edits in trunk/WebKit/win

Manage refcounts correctly in DefaultDownloadDelegate::willSendRequest

Fixes <http://webkit.org/b/29650> Crash in
WebDownload::willSendRequest when using DefaultDownloadDelegate

Reviewed by Brady Eidson.

  • DefaultDownloadDelegate.cpp:

(DefaultDownloadDelegate::willSendRequest): Call AddRef() on the
object we're returning via the finalRequest out-parameter.

11:02 AM Changeset in webkit [48642] by darin@chromium.org
  • 3 edits in trunk/WebCore

2009-09-22 Darin Fisher <darin@chromium.org>

Reviewed by Dimitri Glazkov.

Drop down selects get stuck in the non-visible state and cannot be opened.
https://bugs.webkit.org/show_bug.cgi?id=29645

All paths that lead to hiding the popup menu must call popupDidHide on
the PopupMenuClient. This change makes it so by moving all of the
hiding logic to PopupListBox::hidePopup.

  • platform/chromium/PopupMenuChromium.cpp: (WebCore::PopupContainer::hidePopup): (WebCore::PopupListBox::hidePopup):
  • platform/chromium/PopupMenuChromium.h:
10:41 AM Changeset in webkit [48641] by eric@webkit.org
  • 2 edits in trunk/WebCore

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

Reviewed by Timothy Hatcher.

WebInspector.log() function not protected if console not yet created
https://bugs.webkit.org/show_bug.cgi?id=29336

No new tests. Only affects Web Inspector developers adding logging
to their code during development.

10:34 AM Changeset in webkit [48640] by eric@webkit.org
  • 3 edits
    6 adds in trunk

2009-09-22 Yaar Schnitman <yaar@chromium.org>

Reviewed by David Levin.

Ported chromium.org's javascriptcore.gyp for the webkit chromium port.

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

2009-09-22 Yaar Schnitman <yaar@chromium.org>

Reviewed by David Levin.

Ported chromium.org's webcore.gyp for the webkit chromium port.

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

  • WebCore.gyp/WebCore.gyp: Added.

2009-09-22 Yaar Schnitman <yaar@chromium.org>

Reviewed by David Levin.

Create chromium directory and ported chromium.org's features.gypi for
the webkit chromium port.

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

  • chromium/features.gypi: Added.
10:26 AM Changeset in webkit [48639] by eric@webkit.org
  • 2 edits in trunk/WebCore

2009-09-22 Christian Plesner Hansen <christian.plesner.hansen@gmail.com>

Reviewed by Adam Barth.

[v8] Don't keep clean wrappers artificially alive
We currently keep all DOM node wrappers alive, even when there are
no more references to them from JS, in case they have properties
that we need to keep around if new JS references are created.
This changes the policy to only keep wrappers artificially alive
if they have changed since they were created. Empty wrappers are
discarded and recreated as needed.
https://bugs.webkit.org/show_bug.cgi?id=29330

  • bindings/v8/V8GCController.cpp: (WebCore::ObjectGrouperVisitor::visitDOMWrapper):
10:19 AM Changeset in webkit [48638] by eric@webkit.org
  • 1 edit
    3 adds in trunk/LayoutTests

2009-09-22 Victor Wang <victorw@chromium.org>

Reviewed by Dimitri Glazkov.

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

Add layout test to test iframe shim can be used
to overlay html above a windowed plugin. It checks
premutations of iframe shims in relationship to
plugin.

  • plugins/iframe-shims-expected.txt: Added with property svn:eol-style.
  • plugins/iframe-shims.html: Added with property svn:eol-style.
  • plugins/resources/simple_blank.swf: Added with property svn:mime-type.
9:59 AM Changeset in webkit [48637] by pfeldman@chromium.org
  • 2 edits in trunk/WebCore

2009-09-22 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Timothy Hatcher.

Web Inspector: console.count and console.timeEnd
crash when inspector is opened.

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

  • inspector/InspectorFrontend.cpp: (WebCore::InspectorFrontend::addMessageToConsole):
9:24 AM Changeset in webkit [48636] by xan@webkit.org
  • 2 edits in trunk

2009-09-22 Philippe Normand <pnormand@igalia.com>

Reviewed by Xan Lopez.

link errors due to wrong UNICODE_LIBS on Ubuntu Jaunty
https://bugs.webkit.org/show_bug.cgi?id=29638

Call icu-cconfig with ldflags-libsonly to prevent having a -L
statement that could override libs installed in another prefix.

  • autotools/webkit.m4:
7:42 AM Changeset in webkit [48635] by abarth@webkit.org
  • 2 edits in trunk/WebCore

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

Unreviewed.

Fix bogus build fix I did last night.

  • bindings/v8/custom/V8DOMWindowCustom.cpp: (WebCore::V8Custom::WindowSetTimeoutImpl):
7:26 AM Changeset in webkit [48634] by mitz@apple.com
  • 2 edits in trunk/WebKit/mac

<rdar://problem/7240911> REGRESSION (r48586): Crash occurs when loading
a PDF

Reviewed by John Sullivan.

  • WebView/WebPDFDocumentExtras.mm:

(addWebPDFDocumentExtras): Made methodList static, because
class_addMethods() doesn't copy it.

6:16 AM Changeset in webkit [48633] by Simon Hausmann
  • 2 edits in trunk/LayoutTests

Rubber-stamped by Tor Arne Vestbø.

Patch by Andras Becsi <becsi.andras@stud.u-szeged.hu> on 2009-09-22
[Qt] Skip fluctuating animations/change-one-anim.html test.

  • platform/qt/Skipped:
6:05 AM Changeset in webkit [48632] by Simon Hausmann
  • 2 edits in trunk/WebKit/qt

[Qt] Add default timeout while waiting for signals in QWebPage auto
tests.
https://bugs.webkit.org/show_bug.cgi?id=29637

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

  • tests/qwebpage/tst_qwebpage.cpp:

(waitForSignal):

6:00 AM Changeset in webkit [48631] by xan@webkit.org
  • 2 edits in trunk/WebKit/gtk

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

Reviewed by Jan Alonzo.

Hardcode element positions at 0,0 so that we know where to
generate events to test WebKitHitTestResult.

  • tests/testhittestresult.c: (load_status_cb): (test_webkit_hit_test_result): (main):
5:59 AM Changeset in webkit [48630] by Simon Hausmann
  • 2 edits in trunk/JavaScriptCore

Fix compilation with WINSCW: no varargs macros

Patch by Thiago Macieira <thiago.macieira@nokia.com> on 2009-09-22
Reviewed by Simon Hausmann.

Disable variadic arguments for WINSCW just like we do
for MSVC7.

  • wtf/Assertions.h:
5:57 AM Changeset in webkit [48629] by Simon Hausmann
  • 2 edits in trunk/JavaScriptCore

Disable variadic macros on MSVC7.

Patch by Kent Hansen <khansen@trolltech.com> on 2009-09-22
Reviewed by Simon Hausmann.

This was originally added in r26589 but not extended
when LOG_DISABLED/ASSERT_DISABLED was introduced.

  • wtf/Assertions.h:
5:20 AM Changeset in webkit [48628] by vestbo@webkit.org
  • 2 edits in trunk/WebCore

NPAPI/Mac: Don't paint plugins if we don't have a CGContextRef

Reviewed by Simon Hausmann.

  • plugins/mac/PluginViewMac.cpp:
5:20 AM Changeset in webkit [48627] by vestbo@webkit.org
  • 5 edits in trunk

Fix the Qt/Mac build after r48604 (Implement new QWebPageClient class)

Reivewed by Simon Hausmann.

5:11 AM Changeset in webkit [48626] by xan@webkit.org
  • 2 edits in trunk/WebKit/gtk

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

Reviewed by Jan Alonzo.

[GTK] WebKitHitTestResult is completely broken in gmail
https://bugs.webkit.org/show_bug.cgi?id=29527

We need to use the main or focused frame when doing the coordinate
transformation instead of always using the main frame.

  • webkit/webkitwebview.cpp: (webkit_web_view_get_hit_test_result):
5:06 AM Changeset in webkit [48625] by zoltan@webkit.org
  • 2 edits in trunk/LayoutTests

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

Reviewed by Tor Arne Vestbø.

[Qt] Skip fast/events/drag-file-crash because DRT doesn't support eventSender.beginDragWithFiles yet.

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

Unreviewed build fix for Windows CE < 5

Patch by Simon Hausmann <simon.hausmann@nokia.com> on 2009-09-22
Define WINCEBASIC to disable the IsDebuggerPresent() code in
wtf/Assertions.cpp.

3:30 AM Changeset in webkit [48623] by Simon Hausmann
  • 2 edits in trunk/JavaScriptCore

Fix major memory leak in JavaScriptCore RegisterFile on Windows CE

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

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

On Widows CE we must decommit all committed pages before we release
them. See VirtualFree documentation.
Desktop Windows behaves much smoother in this situation.

  • interpreter/RegisterFile.cpp:

(JSC::RegisterFile::~RegisterFile):

2:48 AM Changeset in webkit [48622] by eric@webkit.org
  • 3 edits in trunk/WebKitTools

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

Reviewed by David Kilzer.

svn-apply can't handle single-line binary file additions
https://bugs.webkit.org/show_bug.cgi?id=29100

Fixed the regexp and added a unit test.

  • Scripts/modules/scm_unittest.py:
  • Scripts/svn-apply:

Sep 21, 2009:

10:35 PM Changeset in webkit [48621] by abarth@webkit.org
  • 1 edit in trunk/WebCore/bindings/v8/custom/V8DOMWindowCustom.cpp

Added missing brace.

10:25 PM Changeset in webkit [48620] by abarth@webkit.org
  • 2 edits in trunk/WebCore

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

Attempted fix for the V8 build.

  • bindings/v8/custom/V8DOMWindowCustom.cpp: (WebCore::V8Custom::WindowSetTimeoutImpl):
10:08 PM Changeset in webkit [48619] by abarth@webkit.org
  • 5 edits in trunk/WebCore

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

Reviewed by Sam Weinig.

Don't re-enter JavaScript after performing access checks
https://bugs.webkit.org/show_bug.cgi?id=29531

Moved the access check slightly later in this functions to avoid
re-entering the JavaScript interpreter (typically via toString)
after performing the access check.

I can't really think of a meaningful test for this change. It's more
security hygiene.

  • bindings/js/JSDOMWindowCustom.cpp: (WebCore::JSDOMWindow::setLocation): (WebCore::JSDOMWindow::open): (WebCore::JSDOMWindow::showModalDialog):
  • bindings/js/JSLocationCustom.cpp: (WebCore::JSLocation::setHref): (WebCore::JSLocation::replace): (WebCore::JSLocation::assign):
  • bindings/v8/custom/V8DOMWindowCustom.cpp: (WebCore::V8Custom::WindowSetTimeoutImpl): (WebCore::if): (CALLBACK_FUNC_DECL): (V8Custom::WindowSetLocation): (V8Custom::ClearTimeoutImpl):
  • bindings/v8/custom/V8LocationCustom.cpp: (WebCore::ACCESSOR_SETTER): (WebCore::CALLBACK_FUNC_DECL):
9:57 PM Changeset in webkit [48618] by abarth@webkit.org
  • 1 edit
    2 adds in trunk/LayoutTests

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

Reviewed by Alexey Proskuryakov.

add a layout test for mishandling of an invalid sequence in multibyte
encodings
https://bugs.webkit.org/show_bug.cgi?id=27395

  • fast/encoding/invalid-multi-byte-over-consumption-expected.txt: Added.
  • fast/encoding/invalid-multi-byte-over-consumption.html: Added.
7:34 PM Changeset in webkit [48617] by eric@webkit.org
  • 4 edits in trunk/WebCore

2009-09-21 Dumitru Daniliuc <dumi@chromium.org>

Reviewed by Eric Seidel.

Make all write transaction start with a BEGIN IMMEDIATE command
instead of BEGIN.

We cannot test this change in a layout test, because in order to
test it we need to spawn two database threads and execute
transaction steps on these two threads in a very specific order,
which seems impossible to do when they share the same main thread
(as they would in a layout test). The SQLite docs and the case
described in the bug though should be enough proof that we do have
a problem here and that this patch will fix it.

Relevant SQLite documentation:
http://www.sqlite.org/lang_transaction.html
http://www.sqlite.org/lockingv3.html#locking

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

  • platform/sql/SQLiteTransaction.cpp: (WebCore::SQLiteTransaction::SQLiteTransaction): Added a readOnly parameter. (WebCore::SQLiteTransaction::begin): Changed to BEGIN IMMEDIATE for write transactions.
  • platform/sql/SQLiteTransaction.h:
  • storage/SQLTransaction.cpp: (WebCore::SQLTransaction::openTransactionAndPreflight): Passing the read-only flag to the SQLiteTransaction instance.
7:15 PM Changeset in webkit [48616] by beidson@apple.com
  • 2 edits in trunk/WebKitSite

Add coding style guidelines for 'using namespace.'
https://bugs.webkit.org/show_bug.cgi?id=29499

Reviewed by Darin Adler.

  • coding/coding-style.html:
6:35 PM Changeset in webkit [48615] by beidson@apple.com
  • 2 edits in trunk/WebCore

Rubberstamped by Mark Rowe.

  • DerivedSources.make: Fix the Xcode build on SnowLeopard.
5:58 PM Changeset in webkit [48614] by eric@webkit.org
  • 2 edits in trunk/WebKitTools

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

Reviewed by David Kilzer.

post-diff and post-commits should be able to find bug urls in ChangeLogs.
https://bugs.webkit.org/show_bug.cgi?id=29206

  • Scripts/bugzilla-tool:
    • Share common options by adding a PostDiffAsPatchToBug.posting_options() method.
    • Rename --no-comment to --add-log-as-comment and reverse behavior. Comments tend to just be noise. I'll eventually remove this argument if no one uses it.
    • Split out code into helper functions to try and make execute() more legible.
    • Make post-diff find the bug url in the ChangeLogs if not passed as an argument.
    • Fallback to bug urls in commit diffs, instead of just in commit messages, meaning post-commits will now find bug urls in ChangeLogs.
5:28 PM Changeset in webkit [48613] by bweinstein@apple.com
  • 2 edits in trunk/LayoutTests

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

Reviewed by Sam Weinig.

Add fast/events/drag-file-crash.html to Windows Skipped List because
DRT doesn't support eventSender.beginDragWithFiles on Windows yet.

  • platform/win/Skipped:
5:19 PM Changeset in webkit [48612] by jam@chromium.org
  • 10 edits
    5 adds in trunk

WebCore:
2009-09-15 John Abd-El-Malek <jam@chromium.org>

Reviewed by Darin Fisher.

Prevent sleeps in unload handlers.
https://bugs.webkit.org/show_bug.cgi?id=29193

Test: fast/dom/Window/slow_unload_handler.html

  • WebCore.gypi:
  • bindings/v8/DateExtension.cpp: Added. (WebCore::DateExtension::DateExtension): (WebCore::DateExtension::get): (WebCore::DateExtension::setAllowSleep): (WebCore::DateExtension::GetNativeFunction): (WebCore::DateExtension::weakCallback): (WebCore::DateExtension::GiveEnableSleepDetectionFunction): (WebCore::DateExtension::OnSleepDetected):
  • bindings/v8/DateExtension.h: Added.
  • bindings/v8/V8AbstractEventListener.cpp: (WebCore::V8AbstractEventListener::invokeEventHandler):
  • bindings/v8/V8Proxy.cpp: (WebCore::V8Proxy::createNewContext): (WebCore::V8Proxy::registerExtensionWithV8): (WebCore::V8Proxy::registeredExtensionWithV8):
  • bindings/v8/V8Proxy.h:

LayoutTests:
2009-09-15 John Abd-El-Malek <jam@chromium.org>

Reviewed by Darin Fisher.

Prevent sleeps in unload handlers.
https://bugs.webkit.org/show_bug.cgi?id=29193

  • fast/dom/Window/resources/slow_unload_handler1.html: Added.
  • fast/dom/Window/slow_unload_handler-expected.txt: Added.
  • fast/dom/Window/slow_unload_handler.html: Added.
  • platform/gtk/Skipped:
  • platform/mac/Skipped:
  • platform/qt/Skipped:
  • platform/win/Skipped:
5:09 PM Changeset in webkit [48611] by eric@webkit.org
  • 2 edits in trunk/WebKitTools

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

Reviewed by Maciej Stachowiak.

--parse-only parameter wasn't passed to SunSpider/sunspider script.
https://bugs.webkit.org/show_bug.cgi?id=29611

  • Scripts/run-sunspider: Missing parameter passing added.
5:07 PM Changeset in webkit [48610] by jianli@chromium.org
  • 3 edits in trunk/WebCore

[V8] Run-time exception in onmessage handler is not forwarded to the
worker object.
https://bugs.webkit.org/show_bug.cgi?id=28980

Reviewed by David Levin.

The previous fix was partially reverted due to a reliability build break
in chromium. The break happens when an exception is thrown without
setting a message. We need to check for this scenario and handle it.

Tested by worker-close.html.

  • bindings/v8/V8AbstractEventListener.cpp:

(WebCore::V8AbstractEventListener::invokeEventHandler):

  • bindings/v8/V8Utilities.cpp:

(WebCore::reportException):

4:10 PM Changeset in webkit [48609] by bolsinga@apple.com
  • 18 edits
    1 add in trunk

JavaScriptCore: Add ENABLE(ORIENTATION_EVENTS)
https://bugs.webkit.org/show_bug.cgi?id=29508

Reviewed by Simon Fraser & Sam Weinig.

  • wtf/Platform.h: Also sort PLATFORM(IPHONE) #defines.

WebCore: Add ENABLE(ORIENTATION_EVENTS)
https://bugs.webkit.org/show_bug.cgi?id=29508

Reviewed by Simon Fraser & Sam Weinig.

See documentation here:
http://developer.apple.com/safari/library/documentation/AppleApplications/Reference/SafariWebContent/HandlingEvents/HandlingEvents.html#//apple_ref/doc/uid/TP40006511-SW16

  • DerivedSources.make: Use new WebCore.OrientationEvents.exp file if ENABLE_ORIENTATION_EVENTS.

Add ENABLE_ORIENTATION_EVENTS to the new ADDITIONAL_IDL_DEFINES variable that is passed to the IDL
code generator. This is because ENABLE_ORIENTATION_EVENTS is not in FEATURE_DEFINES.

  • WebCore.OrientationEvents.exp: Added.
  • WebCore.xcodeproj/project.pbxproj: Add WebCore.OrientationEvents.exp.
  • dom/EventNames.h: Add onorientationchange.
  • html/HTMLAttributeNames.in: Ditto.
  • html/HTMLBodyElement.cpp: Handle onorientationchange properly.

(WebCore::HTMLBodyElement::parseMappedAttribute):
(WebCore::HTMLBodyElement::onorientationchange):
(WebCore::HTMLBodyElement::setOnorientationchange):

  • html/HTMLBodyElement.h: Ditto.
  • html/HTMLBodyElement.idl: Ditto.
  • html/HTMLFrameSetElement.cpp: Ditto.

(WebCore::HTMLFrameSetElement::parseMappedAttribute):
(WebCore::HTMLFrameSetElement::onorientationchange):
(WebCore::HTMLFrameSetElement::setOnorientationchange):

  • html/HTMLFrameSetElement.h: Ditto.
  • html/HTMLFrameSetElement.idl: Ditto.
  • page/DOMWindow.cpp: Ditto.

(WebCore::DOMWindow::orientation): Calls up the to the Frame for the orientation value.
(WebCore::DOMWindow::onorientationchange):
(WebCore::DOMWindow::setOnorientationchange):

  • page/DOMWindow.h: Handle onorientationchange properly.
  • page/DOMWindow.idl: Ditto.
  • page/Frame.cpp: Ditto.

(WebCore::Frame::Frame):
(WebCore::Frame::sendOrientationChangeEvent):

  • page/Frame.h: Ditto.

(WebCore::Frame::orientation):

3:59 PM Changeset in webkit [48608] by pfeldman@chromium.org
  • 4 edits in trunk/WebCore

2009-09-21 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Timothy Hatcher.

Web Inspector: completions are always evaluated against
window (discarding call frames).

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

  • inspector/front-end/ConsoleView.js: (WebInspector.ConsoleView.prototype.completions):
  • inspector/front-end/InjectedScript.js: (InjectedScript.getCompletions):
  • inspector/front-end/ScriptsPanel.js: (WebInspector.ScriptsPanel.prototype.selectedCallFrameId):
3:40 PM Changeset in webkit [48607] by bfulgham@webkit.org
  • 2 edits
    3 adds in trunk/WebCore

Unreviewed build fix for Windows (Cairo) target.

Add stubs for SocketStream classes added in @r47788, which
broke the WinCairo build.

No new tests. (Build failure).

  • WebCore.vcproj/WebCore.vcproj: Add references to new files to Cairo build, exclude from standard Apple build.
  • platform/network/curl/SocketStreamError.h: Added.
  • platform/network/curl/SocketStreamHandle.h: Added.
  • platform/network/curl/SocketStreamHandleCurl.cpp: Added.
3:15 PM Changeset in webkit [48606] by pfeldman@chromium.org
  • 3 edits in trunk/WebCore

2009-09-21 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Timothy Hatcher.

Web Inspector: Expose InspectorResource fields.

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

  • inspector/InspectorResource.cpp: (WebCore::InspectorResource::sourceString): (WebCore::InspectorResource::resourceData):
  • inspector/InspectorResource.h: (WebCore::InspectorResource::requestHeaderFields): (WebCore::InspectorResource::responseHeaderFields): (WebCore::InspectorResource::responseStatusCode): (WebCore::InspectorResource::requestMethod): (WebCore::InspectorResource::requestFormData):
2:50 PM Changeset in webkit [48605] by pfeldman@chromium.org
  • 2 edits in trunk/WebCore

2009-09-21 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Timothy Hatcher.

Web Inspector: JS error drilling down childless node.
No need to dispatch double click twice - it is already handled
in TreeElement.treeElementDoubleClicked.

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

  • inspector/front-end/ElementsTreeOutline.js: (WebInspector.ElementsTreeOutline):
2:39 PM Changeset in webkit [48604] by kenneth@webkit.org
  • 14 edits
    1 add in trunk

WebCore: Implement new QWebPageClient class and let our classes
QWebViewPrivate and QWebGraphicsItemPrivate inherit from it.

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

For Qt, platformPageClient() will now return a class derived from
the QWebPageClient, so the patch adapts our Qt hooks to go though
this class and not depend on the QWebView.

  • WebCore.pro:
  • platform/Widget.h:
  • platform/qt/PlatformScreenQt.cpp:

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

  • platform/qt/PopupMenuQt.cpp:

(WebCore::PopupMenu::show):

  • platform/qt/QWebPageClient.h: Added.
  • platform/qt/WidgetQt.cpp:

(WebCore::Widget::setCursor):

  • plugins/qt/PluginViewQt.cpp:

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

WebKit/qt: For Qt, platformPageClient() will now return a class derived from
the QWebPageClient, so the patch adapts our Qt hooks to go though
this class and not depend on the QWebView.

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

  • Api/qwebgraphicsitem.cpp:

(QWebGraphicsItemPrivate::scroll):
(QWebGraphicsItemPrivate::update):
(QWebGraphicsItemPrivate::cursor):
(QWebGraphicsItemPrivate::updateCursor):
(QWebGraphicsItemPrivate::screenNumber):
(QWebGraphicsItemPrivate::winId):
(QWebGraphicsItem::event):
(QWebGraphicsItem::setPage):

  • Api/qwebgraphicsitem.h:
  • Api/qwebpage.cpp:

(QWebPagePrivate::QWebPagePrivate):

  • Api/qwebpage_p.h:
  • Api/qwebview.cpp:

(QWebViewPrivate::scroll):
(QWebViewPrivate::update):
(QWebViewPrivate::cursor):
(QWebViewPrivate::updateCursor):
(QWebViewPrivate::screenNumber):
(QWebViewPrivate::winId):
(QWebView::setPage):
(QWebView::event):

  • WebCoreSupport/ChromeClientQt.cpp:

(WebCore::ChromeClientQt::repaint):
(WebCore::ChromeClientQt::scroll):
(WebCore::ChromeClientQt::platformPageClient):

2:37 PM Changeset in webkit [48603] by pfeldman@chromium.org
  • 2 edits in trunk/WebCore

2009-09-21 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Timothy Hatcher.

Web Inspector: Evaluating on call frame always returns "undefined".

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

  • inspector/front-end/InjectedScript.js: (InjectedScript.evaluate): (InjectedScript._evaluateAndWrap): (InjectedScript._evaluateOn): (InjectedScript.evaluateInCallFrame):
2:34 PM Changeset in webkit [48602] by pfeldman@chromium.org
  • 3 edits in trunk/WebCore

2009-09-21 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Timothy Hatcher.

Web Inspector: Exception formatting is broken in console.

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

  • inspector/front-end/ConsoleView.js: (WebInspector.ConsoleCommandResult):
  • inspector/front-end/InjectedScript.js: (InjectedScript.evaluate): (InjectedScript.createProxyObject):
2:32 PM Changeset in webkit [48601] by pfeldman@chromium.org
  • 3 edits in trunk/WebCore

2009-09-21 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Timothy Hatcher.

Web Inspector: Console object formatting is broken.

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

  • inspector/front-end/ConsoleView.js: (WebInspector.ConsoleMessage.prototype._format):
  • inspector/front-end/ObjectProxy.js: (WebInspector.ObjectProxy.wrapPrimitiveValue):
2:29 PM Changeset in webkit [48600] by pfeldman@chromium.org
  • 2 edits in trunk/WebCore

2009-09-21 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Timothy Hatcher.

Web Inspector: Crash When Logging an Element Before Opening Inspector

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

  • inspector/InspectorController.cpp: (WebCore::InspectorController::populateScriptObjects):
2:27 PM Changeset in webkit [48599] by Simon Fraser
  • 6 edits
    4 adds in trunk

2009-09-21 Simon Fraser <Simon Fraser>

Reviewed by Dan Bernstein.

Incorrect clipping with accelerated compositing content, and position:fixed
https://bugs.webkit.org/show_bug.cgi?id=29347

Fix the compositing clipping logic to behave correctly when position:fixed
elements clip, by using the new backgroundClipRect() method to determine
when we need to clip, and to compute the clipping layer position.

Test: compositing/overflow/fixed-position-ancestor-clip.html

  • rendering/RenderLayerBacking.cpp: (WebCore::RenderLayerBacking::updateGraphicsLayerGeometry):
  • rendering/RenderLayerCompositor.cpp: (WebCore::RenderLayerCompositor::clippedByAncestor):
2:03 PM Changeset in webkit [48598] by eric@webkit.org
  • 2 edits in trunk/WebCore

2009-09-21 Nate Chapin <Nate Chapin>

Reviewed by Adam Barth.

Add back in a special case for window.top in the V8 bindings.

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

Fixes LayoutTests/fast/dom/Window/window-property-shadowing.html in the Chromium port.

  • bindings/scripts/CodeGeneratorV8.pm: Ensure window.top is not marked as read only, as this breaks the shadowing disabling.
1:54 PM Changeset in webkit [48597] by eric@webkit.org
  • 2 edits in trunk/WebKit/qt

2009-09-21 Yael Aharon <yael.aharon@nokia.com>

Reviewed by Simon Hausmann.

https://bugs.webkit.org/show_bug.cgi?id=29609
Build fix for windows when using Qt 4.5.0.

  • Api/qwebpage.cpp: (QWebPage::userAgentForUrl):
1:53 PM Changeset in webkit [48596] by eric.carlson@apple.com
  • 3 edits
    2 adds in trunk

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

Reviewed by Brady Eidson.

HTMLMediaElement: media file should not reload when page comes out of page cache
https://bugs.webkit.org/show_bug.cgi?id=29604

Test: media/restore-from-page-cache.html

  • html/HTMLMediaElement.cpp: (WebCore::HTMLMediaElement::userCancelledLoad): Do nothing unless the element is still loading. Only fire an 'emptied' event if the readyState is HAVE_NOTHING, otherwise set the network state to NETWORK_IDLE.

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

Reviewed by Brady Eidson.

HTMLMediaElement: media file should not reload when page comes out of page cache
https://bugs.webkit.org/show_bug.cgi?id=29604

  • media/restore-from-page-cache-expected.txt: Added.
  • media/restore-from-page-cache.html: Added.
1:49 PM Changeset in webkit [48595] by weinig@apple.com
  • 3 edits in trunk/WebCore

Clarify two FIXMEs.

Reviewed by Geoffrey "Sean/Shawn/Shaun" Garen.

  • bindings/js/JSHTMLCollectionCustom.cpp:

(WebCore::getNamedItems):

  • bindings/js/JSHTMLFormElementCustom.cpp:

(WebCore::JSHTMLFormElement::nameGetter):

1:47 PM Changeset in webkit [48594] by andersca@apple.com
  • 5 edits
    1 add in trunk/WebKit/win

<rdar://problem/7135588> HTMLMediaElement should ask WebPolicyLoadDelegate before loading resource

Reviewed by Adam Roben.

Implement WebFrameLoaderClient::shouldLoadMediaElementURL and have it call the new private policy
delegate method.

  • Interfaces/IWebPolicyDelegatePrivate.idl: Added.
  • Interfaces/WebKit.idl:
  • WebCoreSupport/WebFrameLoaderClient.cpp:

(WebFrameLoaderClient::shouldLoadMediaElementURL):

  • WebCoreSupport/WebFrameLoaderClient.h:
  • WebKit.vcproj/Interfaces.vcproj:
1:37 PM Changeset in webkit [48593] by eric@webkit.org
  • 2 edits in trunk/JavaScriptCore

2009-09-21 Jedrzej Nowacki <jedrzej.nowacki@nokia.com>

Reviewed by Eric Seidel.

[Fix] SourceCode's uninitialized member

Potential source of crashes and bugs was fixed. Default constructor
didn't initialized m_provider member.

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

  • parser/SourceCode.h: (JSC::SourceCode::SourceCode):
12:07 PM Changeset in webkit [48592] by mitz@apple.com
  • 2 edits in trunk/WebKit/mac

Attempt to fix the Tiger build

  • WebView/WebPDFDocumentExtras.mm:

(addWebPDFDocumentExtras):

12:01 PM Changeset in webkit [48591] by mitz@apple.com
  • 2 edits in trunk/WebKit/mac

Attempt to fix the Tiger build

  • WebView/WebPDFDocumentExtras.mm:

(web_PDFDocumentAllScripts):
(addWebPDFDocumentExtras):

11:59 AM Changeset in webkit [48590] by oliver@apple.com
  • 4 edits
    3 adds in trunk

REGRESSION (r48582): Crash in StructureStubInfo::initPutByIdTransition when reloading trac.webkit.org
https://bugs.webkit.org/show_bug.cgi?id=29599

Reviewed by Geoff Garen

It is unsafe to attempt to cache new property transitions on
dictionaries of any type.

11:54 AM Changeset in webkit [48589] by mitz@apple.com
  • 3 edits in trunk/WebKit/mac

Attempt to fix the Tiger build

  • WebView/WebPDFDocumentExtras.mm:
  • WebView/WebPDFRepresentation.mm:
11:52 AM Changeset in webkit [48588] by beidson@apple.com
  • 1 edit
    2 adds in trunk/WebKitSite

Rubberstamped by Sam Weinig.

Add some example files for an upcoming blog post.

  • blog-files/load-unload-example.html: Added.
  • blog-files/pageshow-pagehide-example.html: Added.
11:47 AM Changeset in webkit [48587] by mitz@apple.com
  • 2 edits in trunk/WebKit/mac

Attempt to fix the Leopard and Tiger builds

  • WebView/WebPDFDocumentExtras.mm:
11:01 AM Changeset in webkit [48586] by mitz@apple.com
  • 4 edits
    1 move
    4 adds in trunk/WebKit

<rdar://problem/4137135> iFrame with PDF not being handled correctly on
usps.com
https://bugs.webkit.org/show_bug.cgi?id=4151

Reviewed by Anders Carlsson.

WebKit:

  • WebKit.xcodeproj/project.pbxproj: Added WebPDFDocumentExtras.{h,mm}

and WebJSPDFDoc.{h,mm} and changed WebPDFRepresentation to
Objective-C++.

WebKit/mac:

  • WebView/WebJSPDFDoc.h: Added.
  • WebView/WebJSPDFDoc.mm: Added.

(jsPDFDocInitialize): Retains the WebDataSource.
(jsPDFDocFinalize): Releases the WebDataSource.
(jsPDFDocPrint): Call the WebUIDelegate method -webView:printFrameView:
with the PDF document's view.
(makeJSPDFDoc): Makes and returns a JavaScript Doc instance that wraps
the WebDataSource.

  • WebView/WebPDFDocumentExtras.h: Added.
  • WebView/WebPDFDocumentExtras.mm: Added.

(appendValuesInPDFNameSubtreeToArray): Traverses a subtree of a PDF name
tree and adds all values in the subtree to an array.
(allValuesInPDFNameTree): Returns an array with all of the values in a
PDF name tree.
(web_PDFDocumentAllScripts): This is the implementation of -[PDFDocument
_web_allScripts]. It gets all values in the document-level "JavaScript"
name tree, which are action dictionaries, and returns an array of the
actions' scripts.
(addWebPDFDocumentExtras): Adds the -_web_allScripts method to
PDFDocument.

  • WebView/WebPDFRepresentation.h:
  • WebView/WebPDFRepresentation.m: Removed.
  • WebView/WebPDFRepresentation.mm: Copied from WebKit/mac/WebView/WebPDFRepresentation.m.

(+[WebPDFRepresentation initialize]): Added. Calls
addWebPDFDocumentExtras().
(-[WebPDFRepresentation finishedLoadingWithDataSource:]): Get the
scripts from the PDF document, create a JavaScript Doc object for the
document, and a JavaScript execution context, then execute every script
in the context, with the Doc object as "this".

9:06 AM Changeset in webkit [48585] by darin@chromium.org
  • 2 edits in trunk/WebCore

2009-09-21 Darin Fisher <darin@chromium.org>

Reviewed by Dimitri Glazkov.

Drop down selects fail to close when a value is selected
https://bugs.webkit.org/show_bug.cgi?id=29582

Implement PopupListBox::hidePopup, which was previously
declared but unimplemented. Removes the declaration of
showPopup since that method is not implemented.

PopupListBox::hidePopup takes care of hiding the popup,
by invoking hidePopup on its parent PopupContainer, and
then informs the PopupMenuClient that popupDidHide.
This mimics the old behavior prior to r48370.

  • platform/chromium/PopupMenuChromium.cpp: (WebCore::PopupListBox::handleKeyEvent): (WebCore::PopupListBox::abandon): (WebCore::PopupListBox::acceptIndex): (WebCore::PopupListBox::hidePopup):
8:55 AM Changeset in webkit [48584] by zoltan@webkit.org
  • 2 edits in trunk/SunSpider

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

Reviewed by Maciej Stachowiak.

[Qt] Make sunspider script work on Windows platform.
https://bugs.webkit.org/show_bug.cgi?id=29544

  • sunspider: Using platform specific null device instead of /dev/null.
8:49 AM Changeset in webkit [48583] by zoltan@webkit.org
  • 2 edits in trunk/WebCore

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

Rubber-stamped by Simon Hausmann.

[Qt] Windows build fix.
https://bugs.webkit.org/show_bug.cgi?id=29535

  • platform/network/qt/DnsPrefetchHelper.cpp: Missing #include "config.h" added.
8:45 AM Changeset in webkit [48582] by oliver@apple.com
  • 8 edits in trunk/JavaScriptCore

Re-land SNES fix, with correct assertion

RS=Maciej Stachowiak

8:38 AM Changeset in webkit [48581] by Adam Roben
  • 1 edit in trunk/JavaScriptCore/ChangeLog

Fix JavaScriptCore/ChangeLog to match our preferred rollout procedure

7:45 AM Changeset in webkit [48580] by Adam Roben
  • 8 edits in trunk/JavaScriptCore

Revert r48573, as it caused many assertion failures

6:08 AM Changeset in webkit [48579] by kov@webkit.org
  • 1 copy in releases/WebKitGTK/webkit-1.1.15

Tagging 1.1.15.

5:57 AM Changeset in webkit [48578] by kov@webkit.org
  • 4 edits in trunk

Unreviewed make dist build fix. Adding missing files.

5:17 AM Changeset in webkit [48577] by kov@webkit.org
  • 3 edits in trunk/WebKit/gtk

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

Update documentation control files to 1.1.15.

  • docs/webkitgtk-docs.sgml:
  • docs/webkitgtk-sections.txt:
5:16 AM Changeset in webkit [48576] by kov@webkit.org
  • 2 edits in trunk/WebKit/gtk

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

Unreviewed docs build fix. Current CFLAGS and LIBS variables no
longer bring gthread in.

  • docs/GNUmakefile.am:
4:56 AM Changeset in webkit [48575] by xan@webkit.org
  • 4 edits in trunk

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

Reviewed by Gustavo Noronha.

Bump version for 1.1.15 release.

  • configure.ac:

WebKit/gtk:

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

Reviewed by Gustavo Noronha.

Update for release.

  • NEWS:
12:37 AM Changeset in webkit [48574] by barraclough@apple.com
  • 3 edits in trunk/JavaScriptCore

Fix stack alignment with ARM THUMB2 JIT.
https://bugs.webkit.org/show_bug.cgi?id=29526

Patch by Gavin Barraclough <barraclough@apple.com> on 2009-09-19
Reviewed by Sam 'Cabin Boy' Weinig.

Stack is currently being decremented by 0x3c, bump this to 0x40 to make this a
multiple of 16 bytes.

  • jit/JITStubs.cpp:

(JSC::JITThunks::JITThunks):

  • jit/JITStubs.h:

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.