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

Side by Side Diff: LayoutTests/imported/web-platform-tests/shadow-dom/shadow-trees/nested-shadow-trees/nested_tree_reftest-expected.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 <html>
3 <head>
4 <meta charset="utf-8" >
5 <title>Shadow DOM Test Ref file - Tests nested shadow tree.</title>
6 <link rel="author" title="shingo.miyazawa" href="mailto:kumatronik@gmail.com " >
7 <script src="../../testcommon.js"></script>
8 <meta name="assert" content="nested shadow tree style is valid." >
9 <style>
10 #host {
11 width: 100px;
12 height: 100px;
13 background-color: red;
14 }
15 </style>
16 </head>
17 <body>
18 <p>The test passes if there is a green square. Test failed if there is a red square.</p>
19 <div id='host'>
20 <div id="sub" style="width: 100%;height:100%;">
21 <div style="width:100%; height:100%;background-color: green;"></div>
22 </div>
23 </div>
24 </body>
25 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698