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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/webkit-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
(Empty)
1 <html>
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>
4 <style>
5 @-webkit-keyframes foo {
6 0 {foo: bar;}
7 }
8
9 #test1 {
10 display: none;
11 }
12 </style>
13
14 <style>
15 @-webkit-keyframes foo {
16 0, 100% {foo: bar;}
17 }
18
19 #test2 {
20 display: none;
21 }
22 </style>
23
24 <style>
25 @-webkit-keyframes foo {
26 10%, none {foo: bar;}
27 }
28
29 #test3 {
30 display: none;
31 }
32 </style>
33
34 <style>
35 @-webkit-keyframes foo {
36 -10%, from {foo: bar;}
37 }
38
39 #test4 {
40 display: none;
41 }
42 </style>
43
44 <style>
45 @-webkit-keyframes foo {
46 0 {foo: bar;} from
47 }
48
49 #test5 {
50 display: none;
51 }
52 </style>
53
54 <style>
55 @-webkit-keyframes foo {
56 {foo: bar;}
57 }
58
59 #test6 {
60 display: none;
61 }
62 </style>
63
64 <style>
65 @-webkit-keyframes foo {
66 10%
67 }
68
69 #test7 {
70 display: none;
71 }
72 </style>
73
74 <style>
75 @-webkit-keyframes foo {
76 from (}) {}
77 #(}) {}
78 }
79
80 #test8 {
81 display: none;
82 }
83 </style>
84
85 <div id="test1">Test 1 failed (INTEGER single key)</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>
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>
90 <div id="test6">Test 6 failed (no key list)</div>
91 <div id="test7">Test 7 failed (no declaration block)</div>
92 <div id="test8">Test 8 failed (handling invalid perentheses block)</div>
93 </body>
94 <script type="text/javascript">
95 if (window.testRunner)
96 testRunner.dumpAsText();
97 </script>
98 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698