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

Side by Side Diff: LayoutTests/fast/dom/shadow/dynamically-added-deep-combinator-and-shadow-pseudo-element.html

Issue 289923004: Rename layout test filenames with "cat" and "hat" combinators (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="resources/shadow-dom.js"></script> 4 <script src="resources/shadow-dom.js"></script>
5 <script src="../../../resources/js-test.js"></script> 5 <script src="../../../resources/js-test.js"></script>
6 </head> 6 </head>
7 <body> 7 <body>
8 <div id='sandbox'> 8 <div id='sandbox'>
9 <div id='target5' class='bar'>Should have blue background.</div> 9 <div id='target5' class='bar'>Should have blue background.</div>
10 </div> 10 </div>
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 + 'div /deep/ #target4 { background: blue; }'; 44 + 'div /deep/ #target4 { background: blue; }';
45 document.body.appendChild(style); 45 document.body.appendChild(style);
46 46
47 backgroundColorShouldBe('host/target1', 'rgb(0, 128, 0)'); 47 backgroundColorShouldBe('host/target1', 'rgb(0, 128, 0)');
48 backgroundColorShouldBe('host/target2', 'rgb(0, 128, 0)'); 48 backgroundColorShouldBe('host/target2', 'rgb(0, 128, 0)');
49 backgroundColorShouldBe('host/target3', 'rgb(0, 0, 255)'); 49 backgroundColorShouldBe('host/target3', 'rgb(0, 0, 255)');
50 backgroundColorShouldBe('host/target4', 'rgb(0, 0, 255)'); 50 backgroundColorShouldBe('host/target4', 'rgb(0, 0, 255)');
51 backgroundColorShouldBe('target5', 'rgb(0, 0, 255)'); 51 backgroundColorShouldBe('target5', 'rgb(0, 0, 255)');
52 </script> 52 </script>
53 </html> 53 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698