Index: third_party/WebKit/LayoutTests/fast/images/content-url-image-with-alt-text-dynamic-2.html |
diff --git a/third_party/WebKit/LayoutTests/fast/images/content-url-image-with-alt-text-dynamic-2.html b/third_party/WebKit/LayoutTests/fast/images/content-url-image-with-alt-text-dynamic-2.html |
deleted file mode 100644 |
index a3236dfffd511634450d229bd073f54c9b9812dd..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/images/content-url-image-with-alt-text-dynamic-2.html |
+++ /dev/null |
@@ -1,11 +0,0 @@ |
-<!DOCTYPE html> |
-<style> |
-#img {content:url('resources/lenna.png')} |
-</style> |
-<img id='img' alt='test image'> |
-<script> |
- document.getElementById('img').style.content = "url('ImageDoesNotExist')"; |
- document.getElementById('img').style.content = "url('resources/lenna.png')"; |
- document.getElementById('img').style.content = "url('ImageDoesNotExist')"; |
-</script> |
-<p>crbug.com/516239: images set by content: url() should behave correctly with alt text. |