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

Unified Diff: LayoutTests/fast/dom/custom/lifecycle-created-createElement-recursion.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/lifecycle-created-createElement-recursion.html
diff --git a/LayoutTests/fast/dom/custom/lifecycle-created-createElement-recursion.html b/LayoutTests/fast/dom/custom/lifecycle-created-createElement-recursion.html
index 4d762b4f6f659d2cc85e82be0fa99b14244d70c9..5f9d983bb50f92bdc0507bc42f5f0dbd07ed85e9 100644
--- a/LayoutTests/fast/dom/custom/lifecycle-created-createElement-recursion.html
+++ b/LayoutTests/fast/dom/custom/lifecycle-created-createElement-recursion.html
@@ -5,7 +5,7 @@
</head>
<body>
<script>
-document.register("x-foo", { prototype: Object.create(HTMLElement.prototype, { createdCallback: { value: function () { this.innerHTML = "<x-foo>Hello</x-foo>"; } } }) });
+document.registerElement("x-foo", { prototype: Object.create(HTMLElement.prototype, { createdCallback: { value: function () { this.innerHTML = "<x-foo>Hello</x-foo>"; } } }) });
if (window.testRunner)
testRunner.dumpAsText();
document.createElement("x-foo");
« no previous file with comments | « LayoutTests/fast/dom/custom/leaks.html ('k') | LayoutTests/fast/dom/custom/lifecycle-created-createElement-reentrancy.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698