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

Side by Side Diff: LayoutTests/fast/dom/shadow/host-pseudo-class.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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="../../js/resources/js-test-pre.js"></script> 4 <script src="../../js/resources/js-test-pre.js"></script>
5 <script src="resources/shadow-dom.js"></script> 5 <script src="resources/shadow-dom.js"></script>
6 <style> 6 <style>
7 :host { 7 :host {
8 background-color: red; 8 background-color: red;
9 } 9 }
10 </style> 10 </style>
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 document.createTextNode('Hello')))))); 237 document.createTextNode('Hello'))))));
238 238
239 backgroundColorShouldBe('host', 'rgb(0, 128, 0)'); 239 backgroundColorShouldBe('host', 'rgb(0, 128, 0)');
240 var parentOfHost = document.getElementById('parentOfHost'); 240 var parentOfHost = document.getElementById('parentOfHost');
241 parentOfHost.id = 'differntIdValue'; 241 parentOfHost.id = 'differntIdValue';
242 backgroundColorShouldBe('host', 'rgba(0, 0, 0, 0)'); 242 backgroundColorShouldBe('host', 'rgba(0, 0, 0, 0)');
243 243
244 cleanUp(); 244 cleanUp();
245 245
246 </script> 246 </script>
247 <script src="../../js/resources/js-test-post.js"></script>
248 </body> 247 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698