Index: Source/WebKit/chromium/tests/data/specify_size.html |
diff --git a/Source/WebKit/chromium/tests/data/specify_size.html b/Source/WebKit/chromium/tests/data/specify_size.html |
deleted file mode 100644 |
index 2041e85db6da96e04f7f0104621dc88008ecb82a..0000000000000000000000000000000000000000 |
--- a/Source/WebKit/chromium/tests/data/specify_size.html |
+++ /dev/null |
@@ -1,20 +0,0 @@ |
-<!doctype html> |
-<html> |
-<body style='margin:0px'> |
-<img id='sizer'/> |
-<script> |
-// The desired size should be specified in the url in the search portion |
-// like this ?widthDimension:heightDimension. |
-var unitMatch = '([0-9]+[a-zA-Z]+)'; |
-var searchParser = new RegExp('\\?' + unitMatch + '(?:\\:' + unitMatch + ')'); |
-var parsedParameters = searchParser.exec(window.location.search); |
- |
-// Set the sizes. |
-var elementToSize = document.getElementById('sizer'); |
-var width = parsedParameters[1]; |
-elementToSize.style.width = width; |
-var height = parsedParameters[2]; |
-elementToSize.style.height = height; |
-</script> |
-</body> |
-</html> |