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

Unified Diff: LayoutTests/fast/css/aspect-ratio-inheritance.html

Issue 647723002: Remove -webkit-aspect-ratio. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Forgot to remove webkitAspectRatio from virtual/stable. :( Created 6 years, 2 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: 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>
« no previous file with comments | « LayoutTests/css3/calc/number-parsing.html ('k') | LayoutTests/fast/css/aspect-ratio-inheritance-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698