Index: third_party/WebKit/LayoutTests/fast/css/different-overflow-x-and-y.html |
diff --git a/third_party/WebKit/LayoutTests/fast/css/different-overflow-x-and-y.html b/third_party/WebKit/LayoutTests/fast/css/different-overflow-x-and-y.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..190a1fd322c8fc3148689b772dfc126ad3b24a48 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/css/different-overflow-x-and-y.html |
@@ -0,0 +1,10 @@ |
+<!DOCTYPE html> |
+<div id="target" style="overflow-x: hidden; overflow-y: scroll"></div> |
meade_UTC10
2017/03/29 22:49:00
nit: Move this down below the testharness includes
shend
2017/03/29 23:59:28
Done.
|
+<script src="../../resources/testharness.js"></script> |
+<script src="../../resources/testharnessreport.js"></script> |
+<script> |
+var element = document.getElementById('target'); |
+test(function() { |
+ assert_equals("", window.getComputedStyle(element).overflow); |
+}, 'Overflow is empty string if overflowX != overflowY') |
+</script> |