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

Unified Diff: LayoutTests/fast/css/value-list-out-of-bounds-crash.html

Issue 689323002: Remove tests which are only testing getPropertyCSSValue, etc. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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/value-list-out-of-bounds-crash.html
diff --git a/LayoutTests/fast/css/value-list-out-of-bounds-crash.html b/LayoutTests/fast/css/value-list-out-of-bounds-crash.html
deleted file mode 100644
index 9431d747cb39b33b0cf5e731a41748efab714b6a..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/css/value-list-out-of-bounds-crash.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<head>
-<style>
- #div {
- width: 200px;
- height: 200px;
- background-image:url(resources/bikes.bmp);
- -webkit-background-size: 50% 100%;
- }
-</style>
-</head>
-
-<body>
-
-<div id='pass'>Failed! This test should not crash, and this text should be changed to a passing message.</div>
-<div id='div'></div>
-
-<script>
- var div = document.getElementById('div');
- var style = document.defaultView.getComputedStyle(div);
- var valueList = style.getPropertyCSSValue('-webkit-background-size');
- var one = valueList.item(100);
-
- var pass = document.getElementById('pass');
- pass.innerHTML = 'PASS! This test passes if it does not crash.';
-</script>
-</body>

Powered by Google App Engine
This is Rietveld 408576698