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

Side by Side Diff: LayoutTests/inspector/elements/styles-4/styles-update-from-js.html

Issue 1158883003: DevTools: shard inspector/elements tests for faster execution. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 | Annotate | Revision Log
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <style> 3 <style>
4 .red div:first-child { 4 .red div:first-child {
5 background-color: red; 5 background-color: red;
6 } 6 }
7 7
8 div[foo="bar"] + div { 8 div[foo="bar"] + div {
9 background-color: blue; 9 background-color: blue;
10 } 10 }
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 127
128 <body onload="runTest()"> 128 <body onload="runTest()">
129 <p> 129 <p>
130 Tests that changes to an inline style and ancestor/sibling className from JavaSc ript are reflected in the Styles pane and Elements tree. 130 Tests that changes to an inline style and ancestor/sibling className from JavaSc ript are reflected in the Styles pane and Elements tree.
131 </p> 131 </p>
132 132
133 <div id="container" style="font-weight:bold"><div id="child"></div><div id="chil dSibling"></div></div> 133 <div id="container" style="font-weight:bold"><div id="child"></div><div id="chil dSibling"></div></div>
134 134
135 </body> 135 </body>
136 </html> 136 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698