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="../../resources/js-test.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 .defscript { | 10 .defscript { |
11 touch-action-delay: none; | 11 touch-action-delay: none; |
12 } | 12 } |
13 </style> | 13 </style> |
14 </head> | 14 </head> |
(...skipping 19 matching lines...) Expand all Loading... |
34 debug('Test case: ' + tests[i].id); | 34 debug('Test case: ' + tests[i].id); |
35 style = window.getComputedStyle(tests[i]); | 35 style = window.getComputedStyle(tests[i]); |
36 shouldBeEqualToString('style.touchActionDelay', tests[i].attributes.expe
cted.value); | 36 shouldBeEqualToString('style.touchActionDelay', tests[i].attributes.expe
cted.value); |
37 debug(''); | 37 debug(''); |
38 } | 38 } |
39 | 39 |
40 successfullyParsed = true; | 40 successfullyParsed = true; |
41 </script> | 41 </script> |
42 </body> | 42 </body> |
43 </html> | 43 </html> |
OLD | NEW |