OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../js/resources/js-test-pre.js"></script> | 4 <script src="../js/resources/js-test-pre.js"></script> |
5 <style> | 5 <style> |
6 /* | 6 /* |
7 Give some rules below something to override in order to test | 7 Give some rules below something to override in order to test |
8 that they really are being parsed | 8 that they really are being parsed |
9 */ | 9 */ |
10 .defnone { | 10 .defnone { |
(...skipping 22 matching lines...) Expand all Loading... |
33 var style; | 33 var style; |
34 for (var i = 0; i < tests.length; i++) { | 34 for (var i = 0; i < tests.length; i++) { |
35 debug('Test case: ' + tests[i].id); | 35 debug('Test case: ' + tests[i].id); |
36 style = window.getComputedStyle(tests[i]); | 36 style = window.getComputedStyle(tests[i]); |
37 shouldBeEqualToString('style.touchAction', tests[i].attributes.expected.value)
; | 37 shouldBeEqualToString('style.touchAction', tests[i].attributes.expected.value)
; |
38 debug(''); | 38 debug(''); |
39 } | 39 } |
40 | 40 |
41 successfullyParsed = true; | 41 successfullyParsed = true; |
42 </script> | 42 </script> |
43 <script src="../js/resources/js-test-post.js"></script> | |
44 </body> | 43 </body> |
45 </html> | 44 </html> |
OLD | NEW |