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

Side by Side Diff: LayoutTests/fast/dom/HTMLTemplateElement/ownerDocument-no-defaultView.html

Issue 159853004: Ensure that every Document has a single, distinct template content ownerDocument (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Suppress expected w3c test failures Created 6 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../../../resources/js-test.js"></script>
3 <script>
4 description('HTMLTemplateElement content ownerDocument in a no-defaultView docum ent should not be same as template');
5 var inertDocument = document.implementation.createHTMLDocument('');
6 var template = inertDocument.createElement('template');
7 shouldNotBe("template.ownerDocument", "template.content.ownerDocument");
8 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698