summaryrefslogtreecommitdiffstats
path: root/WebCore/manual-tests/compositing/font-smoothing.html
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/manual-tests/compositing/font-smoothing.html')
-rw-r--r--WebCore/manual-tests/compositing/font-smoothing.html34
1 files changed, 0 insertions, 34 deletions
diff --git a/WebCore/manual-tests/compositing/font-smoothing.html b/WebCore/manual-tests/compositing/font-smoothing.html
deleted file mode 100644
index fce444e..0000000
--- a/WebCore/manual-tests/compositing/font-smoothing.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<!DOCTYPE html>
-
-<html>
- <style type="text/css" media="screen">
- div {
- margin: 20px;
- font-size: 24pt;
- }
-
- .composited {
- -webkit-transform: translateZ(0);
- background-color: white;
- }
-
- .smoothed {
- -webkit-font-smoothing: subpixel-antialiased;
- }
- </style>
-<head>
-</head>
-<body>
- <div class="composited">
- This text should be antialiased, but not smoothed.
- </div>
-
- <div class="smoothed composited">
- This text should be antialiased and smoothed.
- </div>
-
- <div>
- This text should be antialiased and smoothed in the browser, and antialiased in pixel results.
- </div>
-</body>
-</html>