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

Unified Diff: LayoutTests/fast/dom/custom/registration-context-delete-during-register-base-constructor-retrieval.html

Issue 1055173006: Revert of Implement Custom Element's class side inheritance (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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/registration-context-delete-during-register-base-constructor-retrieval.html
diff --git a/LayoutTests/fast/dom/custom/registration-context-delete-during-register-base-constructor-retrieval.html b/LayoutTests/fast/dom/custom/registration-context-delete-during-register-base-constructor-retrieval.html
deleted file mode 100644
index 4c38a97d53014f9d7bb240ce22f2f5f7be91fba2..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/dom/custom/registration-context-delete-during-register-base-constructor-retrieval.html
+++ /dev/null
@@ -1,32 +0,0 @@
-<!DOCTYPE html>
-<script src="../../../resources/js-test.js"></script>
-<script src="testutils.js"></script>
-<body>
-<script>
-if (fork()) {
- // The controlling parent frame
- description('Tests destroying a context during registration at the' +
- ' point when the prototype\'s constructor property is retrieved.');
- jsTestIsAsync = true;
- successfullyParsed = true;
-} else {
- // The child frame
- var proto = Object.create(HTMLElement.prototype, {
- constructor: {
- configurable: true,
- get: function () {
- destroyContext();
- return HTMLElement;
- }
- }
- });
-
- try {
- var element = document.registerElement('x-a', {prototype: proto});
- log('FAIL expected register to throw an exception');
- } catch (ex) {
- log('PASS caught expected exception "' + ex + '"');
- }
- done();
-}
-</script>

Powered by Google App Engine
This is Rietveld 408576698