Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Unified Diff: LayoutTests/fast/dom/custom/document-register-type-extensions-expected.txt

Issue 14776002: Create wrappers for unresolved Custom Elements at the correct type (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Use toV8 in the constructor. Remove unused variable. Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/dom/custom/document-register-type-extensions-expected.txt
diff --git a/LayoutTests/fast/dom/custom/document-register-type-extensions-expected.txt b/LayoutTests/fast/dom/custom/document-register-type-extensions-expected.txt
index 53aa0b33a08ad3abbd45735912d4f9c8e1e89338..ec52413752965f3278c28e2367d27f15f5d3544b 100644
--- a/LayoutTests/fast/dom/custom/document-register-type-extensions-expected.txt
+++ b/LayoutTests/fast/dom/custom/document-register-type-extensions-expected.txt
@@ -20,13 +20,15 @@ PASS fooCreated.outerHTML is '<x-foo></x-foo>'
PASS fooCreated instanceof fooConstructor is true
PASS barCreated.outerHTML is '<x-bar></x-bar>'
PASS barCreated instanceof barConstructor is false
-PASS barCreated instanceof HTMLUnknownElement is true
+PASS barCreated instanceof HTMLUnknownElement is false
+PASS barCreated instanceof HTMLElement is true
PASS bazCreated.outerHTML is '<x-baz></x-baz>'
PASS bazCreated instanceof bazConstructor is true
PASS bazCreated instanceof HTMLUnknownElement is false
PASS quxCreated.outerHTML is '<x-qux></x-qux>'
PASS quxCreated instanceof quxConstructor is false
-PASS quxCreated instanceof HTMLUnknownElement is true
+PASS quxCreated instanceof HTMLUnknownElement is false
+PASS quxCreated instanceof HTMLElement is true
PASS divFooCreated.outerHTML is '<div is="x-foo"></div>'
PASS divFooCreated instanceof fooConstructor is false
PASS divFooCreated instanceof HTMLDivElement is true
@@ -40,7 +42,8 @@ PASS divBarCreated instanceof HTMLDivElement is true
PASS fooBarCreated.outerHTML is '<x-foo is="x-bar"></x-foo>'
PASS fooBarCreated instanceof fooConstructor is true
PASS barFooCreated.outerHTML is '<x-bar is="x-foo"></x-bar>'
-PASS barFooCreated instanceof HTMLUnknownElement is true
+PASS barFooCreated instanceof HTMLUnknownElement is false
+PASS barFooCreated instanceof HTMLElement is true
PASS fooCreatedNull.outerHTML is '<x-foo></x-foo>'
PASS fooCreatedNull instanceof fooConstructor is true
PASS fooCreatedEmpty.outerHTML is '<x-foo></x-foo>'
@@ -58,7 +61,8 @@ PASS isFormControl(barParsed) is true
PASS divFooParsed instanceof fooConstructor is false
PASS divFooParsed instanceof HTMLDivElement is true
PASS namedBarParsed instanceof barConstructor is false
-PASS namedBarParsed instanceof HTMLUnknownElement is true
+PASS namedBarParsed instanceof HTMLUnknownElement is false
+PASS namedBarParsed instanceof HTMLElement is true
PASS divBarParsed instanceof barConstructor is false
PASS divBarParsed instanceof HTMLDivElement is true
PASS successfullyParsed is true
« no previous file with comments | « LayoutTests/fast/dom/custom/document-register-type-extensions.html ('k') | Source/bindings/v8/CustomElementHelpers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698