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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/canvas/canvas-hit-regions-fallback-element-test-1.html

Issue 2757393002: Remove expectation for no-longer-slow canvas tests (Closed)
Patch Set: Rebase Created 3 years, 9 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <title>HitRegion Canvas Fallback Element Test</title> 2 <title>HitRegion Canvas Fallback Element Test</title>
3 <script src="../../resources/testharness.js"></script> 3 <script src="../../resources/testharness.js"></script>
4 <script src="../../resources/testharnessreport.js"></script> 4 <script src="../../resources/testharnessreport.js"></script>
5 <script src="./resources/test-helpers.js"></script> 5 <script src="./resources/test-helpers.js"></script>
6 <canvas width="400" height="400"> 6 <canvas width="400" height="400">
7 <a id="a"></a> 7 <a id="a"></a>
8 <a id="a_with_image"><img></a> 8 <a id="a_with_image"><img></a>
9 <button id="button"></button> 9 <button id="button"></button>
10 <input id="checkbox" type="checkbox"> 10 <input id="checkbox" type="checkbox">
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 const NotSupportedError = { name : 'NotSupportedError' }; 63 const NotSupportedError = { name : 'NotSupportedError' };
64 64
65 canvas_fallback_test(document.getElementById('button_is_not_descendant_of_canvas '), NotSupportedError); 65 canvas_fallback_test(document.getElementById('button_is_not_descendant_of_canvas '), NotSupportedError);
66 canvas_fallback_test(document.querySelector('canvas'), NotSupportedError); 66 canvas_fallback_test(document.querySelector('canvas'), NotSupportedError);
67 canvas_fallback_test(document.getElementById('a')); 67 canvas_fallback_test(document.getElementById('a'));
68 canvas_fallback_test(document.getElementById('a_with_image'), NotSupportedError) ; 68 canvas_fallback_test(document.getElementById('a_with_image'), NotSupportedError) ;
69 canvas_fallback_test(document.getElementById('button')); 69 canvas_fallback_test(document.getElementById('button'));
70 canvas_fallback_test(document.getElementById('checkbox')); 70 canvas_fallback_test(document.getElementById('checkbox'));
71 canvas_fallback_test(document.getElementById('radio')); 71 canvas_fallback_test(document.getElementById('radio'));
72 canvas_fallback_test(document.getElementById('input_button')); 72 canvas_fallback_test(document.getElementById('input_button'));
73 canvas_fallback_test(document.getElementById('input_image_button'), NotSupported Error);
74 canvas_fallback_test(document.getElementById('empty_select'), NotSupportedError) ;
75 canvas_fallback_test(document.getElementById('select_size_greater_than_1'));
76 canvas_fallback_test(document.getElementById('select_multiple'));
77 canvas_fallback_test(document.getElementById('option_with_select'), NotSupported Error);
78 canvas_fallback_test(document.getElementById('option_with_select_multiple'));
79 canvas_fallback_test(document.getElementById('option_with_select_size_greater_th an_1'));
80 canvas_fallback_test(document.getElementById('p'), NotSupportedError);
81 canvas_fallback_test(document.getElementById('p_with_tabindex'));
82 canvas_fallback_test(document.querySelector('canvas table'));
83 canvas_fallback_test(document.querySelector('canvas tr'));
84 canvas_fallback_test(document.querySelector('canvas th'));
85 canvas_fallback_test(document.querySelector('canvas td'));
86 canvas_fallback_test(document.querySelector('canvas thead'));
87 canvas_fallback_test(document.querySelector('canvas tfoot'));
88 canvas_fallback_test(document.querySelector('canvas tbody'));
89 canvas_fallback_test(document.querySelector('canvas caption'));
90 73
91 </script> 74 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698