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

Unified Diff: third_party/WebKit/LayoutTests/fast/canvas/canvas-hit-regions-fallback-element-test-2.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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/canvas/canvas-hit-regions-fallback-element-test-2.html
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-hit-regions-fallback-element-test.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-hit-regions-fallback-element-test-2.html
similarity index 70%
copy from third_party/WebKit/LayoutTests/fast/canvas/canvas-hit-regions-fallback-element-test.html
copy to third_party/WebKit/LayoutTests/fast/canvas/canvas-hit-regions-fallback-element-test-2.html
index 17e59e8db333e97fbe44d2dcfa377aaef3836851..0a106ad150bd6c8719fc999a42550bd57093110b 100644
--- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-hit-regions-fallback-element-test.html
+++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-hit-regions-fallback-element-test-2.html
@@ -62,14 +62,6 @@ function canvas_fallback_test(element, expected) {
const NotSupportedError = { name : 'NotSupportedError' };
-canvas_fallback_test(document.getElementById('button_is_not_descendant_of_canvas'), NotSupportedError);
-canvas_fallback_test(document.querySelector('canvas'), NotSupportedError);
-canvas_fallback_test(document.getElementById('a'));
-canvas_fallback_test(document.getElementById('a_with_image'), NotSupportedError);
-canvas_fallback_test(document.getElementById('button'));
-canvas_fallback_test(document.getElementById('checkbox'));
-canvas_fallback_test(document.getElementById('radio'));
-canvas_fallback_test(document.getElementById('input_button'));
canvas_fallback_test(document.getElementById('input_image_button'), NotSupportedError);
canvas_fallback_test(document.getElementById('empty_select'), NotSupportedError);
canvas_fallback_test(document.getElementById('select_size_greater_than_1'));
@@ -79,13 +71,5 @@ canvas_fallback_test(document.getElementById('option_with_select_multiple'));
canvas_fallback_test(document.getElementById('option_with_select_size_greater_than_1'));
canvas_fallback_test(document.getElementById('p'), NotSupportedError);
canvas_fallback_test(document.getElementById('p_with_tabindex'));
-canvas_fallback_test(document.querySelector('canvas table'));
-canvas_fallback_test(document.querySelector('canvas tr'));
-canvas_fallback_test(document.querySelector('canvas th'));
-canvas_fallback_test(document.querySelector('canvas td'));
-canvas_fallback_test(document.querySelector('canvas thead'));
-canvas_fallback_test(document.querySelector('canvas tfoot'));
-canvas_fallback_test(document.querySelector('canvas tbody'));
-canvas_fallback_test(document.querySelector('canvas caption'));
</script>

Powered by Google App Engine
This is Rietveld 408576698