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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/keyframes-errors.html

Issue 2523143002: Layout tests: remove webkit prefix from test names (Closed)
Patch Set: Created 4 years 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 <html> 1 <html>
2 <body> 2 <body>
3 <p>Test for Blink bug <a href="https://code.google.com/p/chromium/issues/det ail?id=228870">228870</a>: CSS parser incorrectly handles invalid @-webkit-keyfr ames key values</p> 3 <p>Test for Blink bug <a href="https://code.google.com/p/chromium/issues/det ail?id=228870">228870</a>: CSS parser incorrectly handles invalid @keyframes key values</p>
4 <style> 4 <style>
5 @-webkit-keyframes foo { 5 @keyframes foo {
6 0 {foo: bar;} 6 0 {foo: bar;}
7 } 7 }
8 8
9 #test1 { 9 #test1 {
10 display: none; 10 display: none;
11 } 11 }
12 </style> 12 </style>
13 13
14 <style> 14 <style>
15 @-webkit-keyframes foo { 15 @keyframes foo {
16 0, 100% {foo: bar;} 16 0, 100% {foo: bar;}
17 } 17 }
18 18
19 #test2 { 19 #test2 {
20 display: none; 20 display: none;
21 } 21 }
22 </style> 22 </style>
23 23
24 <style> 24 <style>
25 @-webkit-keyframes foo { 25 @keyframes foo {
26 10%, none {foo: bar;} 26 10%, none {foo: bar;}
27 } 27 }
28 28
29 #test3 { 29 #test3 {
30 display: none; 30 display: none;
31 } 31 }
32 </style> 32 </style>
33 33
34 <style> 34 <style>
35 @-webkit-keyframes foo { 35 @keyframes foo {
36 -10%, from {foo: bar;} 36 -10%, from {foo: bar;}
37 } 37 }
38 38
39 #test4 { 39 #test4 {
40 display: none; 40 display: none;
41 } 41 }
42 </style> 42 </style>
43 43
44 <style> 44 <style>
45 @-webkit-keyframes foo { 45 @keyframes foo {
46 0 {foo: bar;} from 46 0 {foo: bar;} from
47 } 47 }
48 48
49 #test5 { 49 #test5 {
50 display: none; 50 display: none;
51 } 51 }
52 </style> 52 </style>
53 53
54 <style> 54 <style>
55 @-webkit-keyframes foo { 55 @keyframes foo {
56 {foo: bar;} 56 {foo: bar;}
57 } 57 }
58 58
59 #test6 { 59 #test6 {
60 display: none; 60 display: none;
61 } 61 }
62 </style> 62 </style>
63 63
64 <style> 64 <style>
65 @-webkit-keyframes foo { 65 @keyframes foo {
66 10% 66 10%
67 } 67 }
68 68
69 #test7 { 69 #test7 {
70 display: none; 70 display: none;
71 } 71 }
72 </style> 72 </style>
73 73
74 <style> 74 <style>
75 @-webkit-keyframes foo { 75 @keyframes foo {
76 from (}) {} 76 from (}) {}
77 #(}) {} 77 #(}) {}
78 } 78 }
79 79
80 #test8 { 80 #test8 {
81 display: none; 81 display: none;
82 } 82 }
83 </style> 83 </style>
84 84
85 <div id="test1">Test 1 failed (INTEGER single key)</div> 85 <div id="test1">Test 1 failed (INTEGER single key)</div>
86 <div id="test2">Test 2 failed (INTEGER in a key list)</div> 86 <div id="test2">Test 2 failed (INTEGER in a key list)</div>
87 <div id="test3">Test 3 failed (unknown IDENT in a key list)</div> 87 <div id="test3">Test 3 failed (unknown IDENT in a key list)</div>
88 <div id="test4">Test 4 failed (out-of-range percentage key value in a key li st)</div> 88 <div id="test4">Test 4 failed (out-of-range percentage key value in a key li st)</div>
89 <div id="test5">Test 5 failed (key list with no block)</div> 89 <div id="test5">Test 5 failed (key list with no block)</div>
90 <div id="test6">Test 6 failed (no key list)</div> 90 <div id="test6">Test 6 failed (no key list)</div>
91 <div id="test7">Test 7 failed (no declaration block)</div> 91 <div id="test7">Test 7 failed (no declaration block)</div>
92 <div id="test8">Test 8 failed (handling invalid perentheses block)</div> 92 <div id="test8">Test 8 failed (handling invalid perentheses block)</div>
93 </body> 93 </body>
94 <script type="text/javascript"> 94 <script type="text/javascript">
95 if (window.testRunner) 95 if (window.testRunner)
96 testRunner.dumpAsText(); 96 testRunner.dumpAsText();
97 </script> 97 </script>
98 </html> 98 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698