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

Unified Diff: LayoutTests/fast/dom/custom/resources/empty.html

Issue 604773002: Custom Element should have a wrapper while frame navigation (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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/resources/empty.html
diff --git a/LayoutTests/fast/dom/custom/resources/empty.html b/LayoutTests/fast/dom/custom/resources/empty.html
new file mode 100644
index 0000000000000000000000000000000000000000..3b3ea39374588ba67bcaf3478b13da4be6bdf2e4
--- /dev/null
+++ b/LayoutTests/fast/dom/custom/resources/empty.html
@@ -0,0 +1,9 @@
+<html>
+<script>
+var proto = Object.create(HTMLBodyElement.prototype);
+document.registerElement('x-body', {prototype: proto, extends: 'body'});
+</script>
+<body id="thebody" is="x-body">
+
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698