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

Side by Side Diff: LayoutTests/imported/web-platform-tests/shadow-dom/styles/test-005.html

Issue 560893005: First checked-in import of the W3C's test suites. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add new expectations for newly failing w3c tests 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <!--
3 Distributed under both the W3C Test Suite License [1] and the W3C
4 3-clause BSD License [2]. To contribute to a W3C Test Suite, see the
5 policies and contribution forms [3].
6
7 [1] http://www.w3.org/Consortium/Legal/2008/04-testsuite-license
8 [2] http://www.w3.org/Consortium/Legal/2008/03-bsd-license
9 [3] http://www.w3.org/2004/10/27-testcases
10 -->
11 <html>
12 <head>
13 <title>Shadow DOM Test: A_06_00_06</title>
14 <link rel="author" title="Sergey G. Grekhov" href="mailto:sgrekhov@unipro.ru">
15 <link rel="help" href="http://www.w3.org/TR/2013/WD-shadow-dom-20130514/#styles" >
16 <meta name="assert" content="Styles:CSS rules declared in a shadow root style sh eets must not apply in the document tree,">
17 <script src="../../../../resources/testharness.js"></script>
18 <script src="../../../../resources/testharnessreport.js"></script>
19 <script src="../testcommon.js"></script>
20 <link rel="stylesheet" href="../../../../resources/testharness.css">
21 </head>
22 <body>
23 <div id="log"></div>
24 <script>
25 //check querySelector method
26 test(unit(function (ctx) {
27 var d = newRenderedHTMLDocument(ctx);
28
29 d.body.innerHTML =
30 '<div>' +
31 '<span class="invis" id="theTreeSpan">This is an element in the document tree</span>' +
32 '</div>' +
33 '<div id="sr">' +
34 '</div>';
35
36 var host = d.querySelector('#sr');
37
38 //Shadow root to play with
39 var s = host.createShadowRoot();
40
41 var style = d.createElement('style');
42 style.innerHTML ='.invis {display:none}';
43 s.appendChild(style);
44
45 var span = d.createElement('span');
46 span.setAttribute('id', 'theShadowSpan');
47 span.setAttribute('class', 'invis');
48 s.appendChild(span);
49
50 //theTreeSpan should be visible, theShadowSpan not
51 assert_true(d.querySelector('#theTreeSpan').offsetTop > 0,
52 'CSS styles declared in shadow tree must not be applied to the e lements ' +
53 'in the document tree');
54
55 //theTreeSpan should be visible, theShadowSpan not
56 assert_equals(s.querySelector('#theShadowSpan').offsetTop, 0,
57 'CSS styles declared in shadow tree must be applied to the eleme nt ' +
58 'in the same shadow tree');
59
60 }), 'A_06_00_06_T01');
61 </script>
62 </body>
63 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698