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

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

Issue 117313008: Update Custom Elements API to new names. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update for forgotten tests. Created 7 years 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 df321c9d6e17897c931fb46a1ea51cd103706cce..dab422ff1c5509707dfbc2dbab043616e0f12d55 100644
--- a/LayoutTests/fast/dom/custom/unresolved-pseudoclass.html
+++ b/LayoutTests/fast/dom/custom/unresolved-pseudoclass.html
@@ -31,7 +31,7 @@ var b = document.querySelector('#b');
shouldBe('window.getComputedStyle(b).color', '"rgb(0, 0, 222)"');
shouldBe('window.getComputedStyle(b).borderColor', '"rgb(0, 0, 111)"');
-var X = document.register('x-x', {prototype: Object.create(HTMLElement.prototype)});
+var X = document.registerElement('x-x', {prototype: Object.create(HTMLElement.prototype)});
var c = new X();
document.body.insertBefore(c, b);
shouldBe('window.getComputedStyle(c).color', '"rgb(0, 222, 0)"');
@@ -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', {extends: 'span', prototype: Object.create(HTMLSpanElement.prototype)});
+var Y = document.registerElement('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.html ('k') | LayoutTests/fast/dom/custom/upgrade-candidate-adopt-crash.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698