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

Unified Diff: LayoutTests/fast/sub-pixel/shadows.html

Issue 23241010: Support subpixel values for text-shadow and box-shadow (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: found one more spot Created 7 years, 4 months 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/sub-pixel/shadows.html
diff --git a/LayoutTests/fast/sub-pixel/shadows.html b/LayoutTests/fast/sub-pixel/shadows.html
new file mode 100644
index 0000000000000000000000000000000000000000..db07991facec262f2300c72cba6c73698688a4d8
--- /dev/null
+++ b/LayoutTests/fast/sub-pixel/shadows.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<script>
+ if (window.testRunner)
+ testRunner.dumpAsText();
+</script>
+<style>
+ #blur { text-shadow: 0.5px 1.5px 2.5px red; }
+ #box { box-shadow: 0.5px 1.5px 2.5px 3.5px red; }
+</style>
+
+<div id="blur">Foo</div>
+<div id="box">Bar</div>
+
+<p id="out"></p>
+
+<script>
+ var blur = document.getElementById("blur");
+ var box = document.getElementById("box");
+ var out = document.getElementById("out");
+
+ var style = window.getComputedStyle(blur, null);
+ out.innerHTML = style.getPropertyValue("text-shadow");
+ style = window.getComputedStyle(box, null);
+ out.innerHTML += "<br>" + style.getPropertyValue("box-shadow");
+</script>
+

Powered by Google App Engine
This is Rietveld 408576698