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

Side by Side Diff: LayoutTests/imported/web-platform-tests/html/semantics/scripting-1/the-template-element/definitions/template-contents-owner-test-001.html

Issue 1211973013: update-w3c-deps import using blink d42488bb63a5ac7fd6befd40a9b90fe85cebcc4a: (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add flaky/timeout to TestExpectations Created 5 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>HTML Templates: The template contents owner document (no browsing context )</title> 4 <title>HTML Templates: The template contents owner document (no browsing context )</title>
5 <meta name="author" title="Sergey G. Grekhov" href="mailto:sgrekhov@unipro.ru"> 5 <meta name="author" title="Sergey G. Grekhov" href="mailto:sgrekhov@unipro.ru">
6 <meta name="assert" content="Even if template's enclosing document has no browsi ng context, it gets its own template contents owner"> 6 <meta name="assert" content="Even if template's enclosing document has no browsi ng context, it gets its own template contents owner">
7 <link rel="help" href="http://www.w3.org/TR/2013/WD-html-templates-20130214/#def initions"> 7 <link rel="help" href="http://www.w3.org/TR/2013/WD-html-templates-20130214/#def initions">
8 <script src="../../../../../../../resources/testharness.js"></script> 8 <script src="../../../../../../../resources/testharness.js"></script>
9 <script src="../../../../../../../resources/testharnessreport.js"></script> 9 <script src="../../../../../../../resources/testharnessreport.js"></script>
10 <script src='../testcommon.js'></script> 10 <script src='/html/resources/common.js'></script>
11 <link rel="stylesheet" href="../../../../../../../resources/testharness.css"> 11 <link rel="stylesheet" href="../../../../../../../resources/testharness.css">
12 </head> 12 </head>
13 <body> 13 <body>
14 <div id="log"></div> 14 <div id="log"></div>
15 <script type="text/javascript"> 15 <script type="text/javascript">
16 16
17 17
18 test(function() { 18 test(function() {
19 var doc = newHTMLDocument(); 19 var doc = newHTMLDocument();
20 var template = doc.createElement('template'); 20 var template = doc.createElement('template');
(...skipping 15 matching lines...) Expand all
36 var template = doc.querySelector('template'); 36 var template = doc.querySelector('template');
37 37
38 assert_not_equals(template.content.ownerDocument, doc, 'Wrong template conte nt owner'); 38 assert_not_equals(template.content.ownerDocument, doc, 'Wrong template conte nt owner');
39 39
40 }, 'Test the template contents owner document when enclosing document has ' 40 }, 'Test the template contents owner document when enclosing document has '
41 + 'no browsing content. Template element is created by innerHTML'); 41 + 'no browsing content. Template element is created by innerHTML');
42 42
43 </script> 43 </script>
44 </body> 44 </body>
45 </html> 45 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698