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

Side by Side Diff: LayoutTests/inspector/elements/styles-2/keyframes-rules.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 @-webkit-keyframes fadeout { 4 @-webkit-keyframes fadeout {
5 from { background-color: black; } 5 from { background-color: black; }
6 to { background-color: white; } 6 to { background-color: white; }
7 } 7 }
8 8
9 * { 9 * {
10 background-color: papayawhip; 10 background-color: papayawhip;
(...skipping 21 matching lines...) Expand all
32 </head> 32 </head>
33 33
34 <body onload="runTest()"> 34 <body onload="runTest()">
35 <p> 35 <p>
36 Tests that source data is extracted correctly from stylesheets with @-webkit-key frames rules. 36 Tests that source data is extracted correctly from stylesheets with @-webkit-key frames rules.
37 </p> 37 </p>
38 38
39 <div id="inspected" style="background-color: white;">Content</div> 39 <div id="inspected" style="background-color: white;">Content</div>
40 </body> 40 </body>
41 </html> 41 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698