Index: LayoutTests/fast/css/aspect-ratio-inheritance.html |
diff --git a/LayoutTests/fast/css/aspect-ratio-inheritance.html b/LayoutTests/fast/css/aspect-ratio-inheritance.html |
deleted file mode 100644 |
index b5e0b3a4943894c15c39f05f88324f12ed916781..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/css/aspect-ratio-inheritance.html |
+++ /dev/null |
@@ -1,17 +0,0 @@ |
-<!DOCTYPE html> |
-<script src="../../resources/js-test.js"></script> |
-<div style="-webkit-aspect-ratio: 1 / 2;"> |
- <div id="aspectRatioTest"></div> |
-</div> |
-<script> |
- function testComputedValue(elementId, value, styleAttribute) |
- { |
- var div = document.getElementById(elementId); |
- div.style[styleAttribute] = value; |
- var computedValue = window.getComputedStyle(div)[styleAttribute]; |
- return computedValue; |
- } |
- shouldBeEqualToString('testComputedValue("aspectRatioTest", "1 / 4", "-webkit-aspect-ratio")', '1/4'); |
- shouldBeEqualToString('testComputedValue("aspectRatioTest", "inherit", "-webkit-aspect-ratio")', '1/2'); |
- shouldBeEqualToString('testComputedValue("aspectRatioTest", "none", "-webkit-aspect-ratio")', 'none'); |
-</script> |