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

Unified Diff: LayoutTests/fast/dom/custom/registration-context-delete-during-attribute-changed-retrieval.html

Issue 18789002: Implement Custom Elements' attributeChangedCallback. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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/registration-context-delete-during-attribute-changed-retrieval.html
diff --git a/LayoutTests/fast/dom/custom/registration-context-delete-during-register-created-retrieval.html b/LayoutTests/fast/dom/custom/registration-context-delete-during-attribute-changed-retrieval.html
similarity index 88%
copy from LayoutTests/fast/dom/custom/registration-context-delete-during-register-created-retrieval.html
copy to LayoutTests/fast/dom/custom/registration-context-delete-during-attribute-changed-retrieval.html
index 651466f5626273bae820bda97931d716a81574a8..59d5b6a8fac0741df296c57ec1408499181f4008 100644
--- a/LayoutTests/fast/dom/custom/registration-context-delete-during-register-created-retrieval.html
+++ b/LayoutTests/fast/dom/custom/registration-context-delete-during-attribute-changed-retrieval.html
@@ -5,14 +5,14 @@
<script>
if (fork()) {
// The controlling parent frame
- description('Tests destroying a context during registration at the point when the created callback is retrieved.');
+ description('Tests destroying a context during registration at the point when the attributeChanged callback is retrieved.');
jsTestIsAsync = true;
successfullyParsed = true;
} else {
// The child frame
var proto = Object.create(HTMLElement.prototype, {
- createdCallback: {
+ attributeChangedCallback: {
get: function () {
destroyContext();
return function () { }

Powered by Google App Engine
This is Rietveld 408576698