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

Side by Side Diff: third_party/WebKit/LayoutTests/shadow-dom/css-cascade-outer-scope2.html

Issue 2074393002: Clean up shadow-dom layout tests so that they are well organized (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 <style>.t { color: green }</style> 2 <style>.t { color: green }</style>
3 <div id="host"> 3 <div id="host">
4 <span id="t" class="t">This text should be green.</span> 4 <span id="t" class="t">This text should be green.</span>
5 </div> 5 </div>
6 <script> 6 <script>
7 if (window.testRunner) 7 if (window.testRunner)
8 testRunner.dumpAsText(); 8 testRunner.dumpAsText();
9 9
10 var root = host.attachShadow({'mode': 'open'}); 10 var root = host.attachShadow({'mode': 'open'});
11 root.innerHTML = '<style>::slotted(*) { color: red }</style><slot></slot>'; 11 root.innerHTML = '<style>::slotted(*) { color: red }</style><slot></slot>';
12 document.write(getComputedStyle(t).color == 'rgb(0, 128, 0)' ? 'PASS' : 'FAIL'); 12 document.write(getComputedStyle(t).color == 'rgb(0, 128, 0)' ? 'PASS' : 'FAIL');
13 </script> 13 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698