diff options
author | abarth@webkit.org <abarth@webkit.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2011-09-06 01:52:46 +0000 |
---|---|---|
committer | abarth@webkit.org <abarth@webkit.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2011-09-06 01:52:46 +0000 |
commit | 0aedd738f90dbff64710c1e182b2f5f19d43066f (patch) | |
tree | f999bb35879d4dfd015248856a1096708dbe5806 /third_party/WebKit/LayoutTests/fast/dom/wrapper-classes-expected.txt | |
parent | c13a065741d7e3cb1fee577455008ceb0ed5f5e7 (diff) | |
download | chromium_src-0aedd738f90dbff64710c1e182b2f5f19d43066f.zip chromium_src-0aedd738f90dbff64710c1e182b2f5f19d43066f.tar.gz chromium_src-0aedd738f90dbff64710c1e182b2f5f19d43066f.tar.bz2 |
window.HTMLSpanElement does not exist
https://bugs.webkit.org/show_bug.cgi?id=67571
Reviewed by Sam Weinig.
Source/WebCore:
We have these objects for most other elements and HTMLSpanElement
exists in Firefox and in the HTML5 spec. This patch adds it.
Test: fast/dom/wrapper-classes.html
* CMakeLists.txt:
* CodeGenerators.pri:
* DerivedSources.cpp:
* DerivedSources.make:
* GNUmakefile.list.am:
* WebCore.gypi:
* WebCore.pro:
* WebCore.vcproj/WebCore.vcproj:
* WebCore.xcodeproj/project.pbxproj:
* html/HTMLElementsAllInOne.cpp:
* html/HTMLSpanElement.cpp: Added.
(WebCore::HTMLSpanElement::HTMLSpanElement):
(WebCore::HTMLSpanElement::create):
* html/HTMLSpanElement.h: Added.
* html/HTMLSpanElement.idl: Added.
* html/HTMLTagNames.in:
* page/DOMWindow.idl:
LayoutTests:
Update tests to account for HTMLSpanElement existing. I also took the
liberty of changing fast/tokenizer/external-script-document-write.html
into a text test and cleaning up the platform-specific results.
* editing/selection/extend-after-mouse-selection-expected.txt:
* fast/dom/gc-6-expected.txt:
* fast/dom/gc-7-expected.txt:
* fast/dom/wrapper-classes-expected.txt:
* fast/dom/wrapper-classes.html:
* fast/events/mouseclick-target-and-positioning-expected.txt:
* fast/js/toString-and-valueOf-override-expected.txt:
* fast/tokenizer/external-script-document-write-expected.txt: Added.
* fast/tokenizer/resources/external-script-document-write.js:
* platform/chromium-linux/fast/tokenizer/external-script-document-write-expected.png: Removed.
* platform/chromium-win/fast/tokenizer/external-script-document-write-expected.png: Removed.
* platform/chromium-win/fast/tokenizer/external-script-document-write-expected.txt: Removed.
* platform/gtk/fast/tokenizer/external-script-document-write-expected.png: Removed.
* platform/gtk/fast/tokenizer/external-script-document-write-expected.txt: Removed.
* platform/mac-leopard/fast/tokenizer/external-script-document-write-expected.png: Removed.
* platform/mac/fast/tokenizer/external-script-document-write-expected.png: Removed.
* platform/mac/fast/tokenizer/external-script-document-write-expected.txt: Removed.
* platform/qt/fast/tokenizer/external-script-document-write-expected.png: Removed.
* platform/qt/fast/tokenizer/external-script-document-write-expected.txt: Removed.
git-svn-id: svn://svn.chromium.org/blink/trunk@94545 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/dom/wrapper-classes-expected.txt')
-rw-r--r-- | third_party/WebKit/LayoutTests/fast/dom/wrapper-classes-expected.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/dom/wrapper-classes-expected.txt b/third_party/WebKit/LayoutTests/fast/dom/wrapper-classes-expected.txt index f10d294..6ddcb7f 100644 --- a/third_party/WebKit/LayoutTests/fast/dom/wrapper-classes-expected.txt +++ b/third_party/WebKit/LayoutTests/fast/dom/wrapper-classes-expected.txt @@ -428,9 +428,9 @@ PASS tagJSWrapperConstructorClass('select') is 'HTMLSelectElementConstructor' PASS tagJSWrapperClass('small') is 'HTMLElement' PASS tagJSWrapperPrototypeClass('small') is 'HTMLElementPrototype' PASS tagJSWrapperConstructorClass('small') is 'HTMLElementConstructor' -PASS tagJSWrapperClass('span') is 'HTMLElement' -PASS tagJSWrapperPrototypeClass('span') is 'HTMLElementPrototype' -PASS tagJSWrapperConstructorClass('span') is 'HTMLElementConstructor' +PASS tagJSWrapperClass('span') is 'HTMLSpanElement' +PASS tagJSWrapperPrototypeClass('span') is 'HTMLSpanElementPrototype' +PASS tagJSWrapperConstructorClass('span') is 'HTMLSpanElementConstructor' PASS tagJSWrapperClass('strike') is 'HTMLElement' PASS tagJSWrapperPrototypeClass('strike') is 'HTMLElementPrototype' PASS tagJSWrapperConstructorClass('strike') is 'HTMLElementConstructor' |