Index: third_party/WebKit/LayoutTests/scrollbars/rtl/div-horizontal.html |
diff --git a/third_party/WebKit/LayoutTests/scrollbars/rtl/div-horizontal.html b/third_party/WebKit/LayoutTests/scrollbars/rtl/div-horizontal.html |
index e2ff7f8b67e69f096779e4a10fcfa272ee3d4226..a10044a3b88a6e7a01c0b093f9ec6d951c6ef95e 100644 |
--- a/third_party/WebKit/LayoutTests/scrollbars/rtl/div-horizontal.html |
+++ b/third_party/WebKit/LayoutTests/scrollbars/rtl/div-horizontal.html |
@@ -1,8 +1,8 @@ |
<!DOCTYPE html> |
-<html> |
<head> |
-<title>Bug 85856</title> |
-<script src="../../resources/js-test.js"></script> |
+<title>Bug 85856: Test if WebKit can show the left side of the inner elements regardless of the position of its scrollbars. To test manually, open this document and verify we can see "ABC" both in the LTR element and in the RTL element.</title> |
+<script src="../../resources/testharness.js"></script> |
+<script src="../../resources/testharnessreport.js"></script> |
</head> |
<body dir="ltr"> |
<div dir="ltr" id="outer-ltr" style="width: 200px; height: 200px; overflow: scroll;"> |
@@ -12,29 +12,31 @@ |
<div id="inner-rtl" style="text-align: left; width: 300px; height: 300px;">ABC</div> |
</div> |
<script type="text/javascript"> |
-description('Test if WebKit can show the left side of the inner elements regardless of the position of its scrollbars. To test manually, open this document and verify we can see "ABC" both in the LTR element and in the RTL element.'); |
+test(function(){ |
+ var outerLTR = document.getElementById('outer-ltr'); |
+ var innerLTR = document.getElementById('inner-ltr'); |
+ var outerRTL = document.getElementById('outer-rtl'); |
+ var innerRTL = document.getElementById('inner-rtl'); |
+ outerLTR.scrollLeft = 0; |
+ outerRTL.scrollLeft = 0; |
-var outerLTR = document.getElementById('outer-ltr'); |
-var innerLTR = document.getElementById('inner-ltr'); |
-var outerRTL = document.getElementById('outer-rtl'); |
-var innerRTL = document.getElementById('inner-rtl'); |
-outerLTR.scrollLeft = 0; |
-outerRTL.scrollLeft = 0; |
+ /*Verify the widths of the outer RTL elements are the same as the widths of |
+ the outer LTR elements.*/ |
+ assert_equals(outerLTR.offsetWidth, outerRTL.offsetWidth); |
+ assert_equals(outerLTR.clientWidth, outerRTL.clientWidth); |
+ assert_equals(outerLTR.scrollWidth, outerRTL.scrollWidth); |
-debug('Verify the widths of the outer RTL elements are the same as the widths of the outer LTR elements.'); |
-shouldBeTrue('outerLTR.offsetWidth == outerRTL.offsetWidth'); |
-shouldBeTrue('outerLTR.clientWidth == outerRTL.clientWidth'); |
-shouldBeTrue('outerLTR.scrollWidth == outerRTL.scrollWidth'); |
+ /*Verify the widths of the inner RTL elements are the same as the widths of |
+ the inner LTR elements.*/ |
+ assert_equals(innerLTR.offsetWidth, innerRTL.offsetWidth); |
+ assert_equals(innerLTR.clientWidth, innerRTL.clientWidth); |
+ assert_equals(innerLTR.scrollWidth, innerRTL.scrollWidth); |
-debug('Verify the widths of the inner RTL elements are the same as the widths of the inner LTR elements.'); |
-shouldBeTrue('innerLTR.offsetWidth == innerRTL.offsetWidth'); |
-shouldBeTrue('innerLTR.clientWidth == innerRTL.clientWidth'); |
-shouldBeTrue('innerLTR.scrollWidth == innerRTL.scrollWidth'); |
- |
-debug('Verify the width of the vertical scrollbar of the outer RTL element is the same as the one of the outer LTR element regardless of their scrollbar positions.'); |
-var scrollbarWidthLTR = outerLTR.offsetWidth - outerLTR.clientWidth; |
-var scrollbarWidthRTL = outerRTL.offsetWidth - outerRTL.clientWidth; |
-shouldBeTrue('scrollbarWidthLTR == scrollbarWidthRTL'); |
+ /*Verify the width of the vertical scrollbar of the outer RTL element is the |
+ same as the one of the outer LTR element regardless of their scrollbar positions.*/ |
+ var scrollbarWidthLTR = outerLTR.offsetWidth - outerLTR.clientWidth; |
+ var scrollbarWidthRTL = outerRTL.offsetWidth - outerRTL.clientWidth; |
+ assert_equals(scrollbarWidthLTR, scrollbarWidthRTL); |
+}); |
</script> |
</body> |
-</html> |