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

Side by Side Diff: LayoutTests/fast/dom/HTMLTemplateElement/ownerDocumentXHTML.xhtml

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <script src="../../js/resources/js-test-pre.js"></script> 3 <script src="../../js/resources/js-test-pre.js"></script>
4 <script> 4 <script>
5 5
6 description('Test HTMLTemplateElement content ownerDocument in XHTML Document'); 6 description('Test HTMLTemplateElement content ownerDocument in XHTML Document');
7 7
8 shouldBeFalse('document instanceof HTMLDocument'); 8 shouldBeFalse('document instanceof HTMLDocument');
9 var template4 = document.createElement('template'); 9 var template4 = document.createElement('template');
10 var templateContentOwnerDocument = template4.content.ownerDocument; 10 var templateContentOwnerDocument = template4.content.ownerDocument;
11 shouldNotBe('document', 'templateContentOwnerDocument'); 11 shouldNotBe('document', 'templateContentOwnerDocument');
12 shouldBeFalse('templateContentOwnerDocument instanceof HTMLDocument'); 12 shouldBeFalse('templateContentOwnerDocument instanceof HTMLDocument');
13 13
14 </script> 14 </script>
15 <script src="../../js/resources/js-test-post.js"></script>
16 </html> 15 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698