Index: third_party/WebKit/LayoutTests/fast/repaint/quotes.html |
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/quotes.html b/third_party/WebKit/LayoutTests/fast/repaint/quotes.html |
deleted file mode 100644 |
index ecb9651b603812876ec3f63d64fe9933d5c3ef6a..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/repaint/quotes.html |
+++ /dev/null |
@@ -1,23 +0,0 @@ |
-<!DOCTYPE html> |
-<script src="resources/text-based-repaint.js" type="text/javascript"></script> |
-<script> |
-function repaintTest() |
-{ |
- document.getElementById('q1').className = 'q-unchanged'; |
- document.getElementById('q2').className = 'q-changed'; |
-} |
-window.onload = runRepaintAndPixelTest; |
-</script> |
-<style> |
-.q { |
- quotes: '<' '>'; |
-} |
-.q-changed { |
- quotes: '{' '}'; |
-} |
-.q-unchanged { |
- quotes: '<' '>'; |
-} |
-</style> |
-<div><q id="q1" class="q">quote 1</q></div> |
-<div><q id="q2" class="q">quote 2</q></div> |