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

Side by Side Diff: third_party/WebKit/LayoutTests/html/document_metadata/style-disabled.html

Issue 2780363002: Rename subdirectory names in LayoutTests/html/. (Closed)
Patch Set: Created 3 years, 8 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 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../resources/js-test.js"></script> 4 <script src="../../resources/js-test.js"></script>
5 <style> 5 <style>
6 .test { 6 .test {
7 color: red; 7 color: red;
8 } 8 }
9 </style> 9 </style>
10 <style id="non-css" type="foo/bar"></style> 10 <style id="non-css" type="foo/bar"></style>
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 var otherStyle = document.getElementById('non-css'); 49 var otherStyle = document.getElementById('non-css');
50 shouldBeFalse('otherStyle.disabled'); 50 shouldBeFalse('otherStyle.disabled');
51 otherStyle.disabled = true 51 otherStyle.disabled = true
52 shouldBeFalse('otherStyle.disabled'); 52 shouldBeFalse('otherStyle.disabled');
53 53
54 54
55 document.body.removeChild(testElement); 55 document.body.removeChild(testElement);
56 </script> 56 </script>
57 </body> 57 </body>
58 </html> 58 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698