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

Unified Diff: LayoutTests/fast/dom/custom/unresolved-pseudoclass.html

Issue 23717043: Implement Custom Elements 'extends' option. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 3 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/unresolved-pseudoclass.html
diff --git a/LayoutTests/fast/dom/custom/unresolved-pseudoclass.html b/LayoutTests/fast/dom/custom/unresolved-pseudoclass.html
index 03348d24a945d66074c26790542148f695819407..4bda53aaadbc3b4a870d39709e2aaf538d4019aa 100644
--- a/LayoutTests/fast/dom/custom/unresolved-pseudoclass.html
+++ b/LayoutTests/fast/dom/custom/unresolved-pseudoclass.html
@@ -39,7 +39,7 @@ shouldBe('window.getComputedStyle(c).color', '"rgb(0, 222, 0)"');
// Registering x-x should have changed the styles of #a.
shouldBe('window.getComputedStyle(a).color', '"rgb(0, 222, 0)"');
-var Y = document.register('x-y', {prototype: Object.create(HTMLSpanElement.prototype)});
+var Y = document.register('x-y', {extends: 'span', prototype: Object.create(HTMLSpanElement.prototype)});
var d = new Y();
document.body.insertBefore(d, b);
shouldBe('window.getComputedStyle(d).color', '"rgb(0, 111, 0)"');
« no previous file with comments | « LayoutTests/fast/dom/custom/type-extensions-expected.txt ('k') | Source/bindings/v8/CustomElementConstructorBuilder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698