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

Unified Diff: third_party/WebKit/LayoutTests/accessibility/slider-thumb-bounds.html

Issue 2287433003: Get rid of remaining uses of AXObject::elementRect (Closed)
Patch Set: Rebase Created 4 years, 3 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/accessibility/slider-thumb-bounds.html
diff --git a/third_party/WebKit/LayoutTests/accessibility/slider-thumb-bounds.html b/third_party/WebKit/LayoutTests/accessibility/slider-thumb-bounds.html
new file mode 100644
index 0000000000000000000000000000000000000000..262520e4a12d5ff1634b92f59ee3cb3159af31f6
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/accessibility/slider-thumb-bounds.html
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML>
+<script src="../resources/testharness.js"></script>
+<script src="../resources/testharnessreport.js"></script>
+
+<input id="slider" type="range" min=0 max=10 value=0 style="position: absolute; left: 100px; top: 50px; width: 300px; height: 20px;">
+
+<script>
+test(function(t) {
+ var axSlider = accessibilityController.accessibleElementById("slider");
+ assert_equals(axSlider.role, "AXRole: AXSlider");
+
+ var axSliderThumb = axSlider.childAtIndex(0);
+ assert_equals(axSliderThumb.role, "AXRole: AXSliderThumb");
+
+ // The slider thumb should be near the beginning of the slider
+ assert_true(Math.abs(axSliderThumb.x - axSlider.x) < 5);
+ assert_true(Math.abs(axSliderThumb.y - axSlider.y) < 5);
+
+ // The slider should be wide but the thumb should not be
+ assert_true(axSlider.width > 250);
+ assert_true(axSliderThumb.width < 30);
+}, "Test bounds of slider thumb");
+</script>
+
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698