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

Unified Diff: LayoutTests/fast/css3-text/css3-text-decoration/repaint/repaint-text-decoration-color.html

Issue 14576017: Implement CSS3TextDecorations runtime flag in favor of CSS3_TEXT (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed updated on text-underline-position for now (to be discussed & re-added later) Created 7 years, 7 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/css3-text/css3-text-decoration/repaint/repaint-text-decoration-color.html
diff --git a/LayoutTests/fast/css3-text/css3-text-decoration/repaint/repaint-text-decoration-color.html b/LayoutTests/fast/css3-text/css3-text-decoration/repaint/repaint-text-decoration-color.html
index 063034cfcf0449dcbf089904ff021f3e0a0f91b4..8089075a2c2dce8c88ffdf5fa133506ae6394593 100644
--- a/LayoutTests/fast/css3-text/css3-text-decoration/repaint/repaint-text-decoration-color.html
+++ b/LayoutTests/fast/css3-text/css3-text-decoration/repaint/repaint-text-decoration-color.html
@@ -10,15 +10,15 @@
<script src="../../repaint/resources/repaint.js" type="text/javascript"></script>
<script>
function runRepaintTest() {
- document.getElementById("test-underline").style.webkitTextDecorationColor = 'gray';
- document.getElementById("test-overline").style.webkitTextDecorationColor = 'yellow';
- document.getElementById("test-line-through").style.webkitTextDecorationColor = 'white';
- document.getElementById("test-parent").style.webkitTextDecorationColor = 'green';
- document.getElementById("test-ancestor-1").style.webkitTextDecorationColor = 'black';
- document.getElementById("test-ancestor-2").style.webkitTextDecorationColor = 'inherit';
- document.getElementById("test-mixed-1").style.webkitTextDecorationColor = 'black';
- document.getElementById("test-mixed-2").style.webkitTextDecorationColor = 'green';
- document.getElementById("test-mixed-3").style.webkitTextDecorationColor = 'blue';
+ document.getElementById("test-underline").style.textDecorationColor = 'gray';
+ document.getElementById("test-overline").style.textDecorationColor = 'yellow';
+ document.getElementById("test-line-through").style.textDecorationColor = 'white';
+ document.getElementById("test-parent").style.textDecorationColor = 'green';
+ document.getElementById("test-ancestor-1").style.textDecorationColor = 'black';
+ document.getElementById("test-ancestor-2").style.textDecorationColor = 'inherit';
+ document.getElementById("test-mixed-1").style.textDecorationColor = 'black';
+ document.getElementById("test-mixed-2").style.textDecorationColor = 'green';
+ document.getElementById("test-mixed-3").style.textDecorationColor = 'blue';
}
</script>
<style>

Powered by Google App Engine
This is Rietveld 408576698