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

Unified Diff: content/test/data/accessibility/css/font-style.html

Issue 2716183003: When text decoration is underline or lie-through, some related IA2 attributes need to deviate from … (Closed)
Patch Set: Fixed unit test. Created 3 years, 9 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: content/test/data/accessibility/css/font-style.html
diff --git a/content/test/data/accessibility/css/font-style.html b/content/test/data/accessibility/css/font-style.html
index 5df21b4c8a96b4afae157811281db55c2b014b70..d9cab1af1a72f4f12d6934660ab849cd1f7eb1fc 100644
--- a/content/test/data/accessibility/css/font-style.html
+++ b/content/test/data/accessibility/css/font-style.html
@@ -3,14 +3,21 @@
@WIN-ALLOW:font-weight:*
@WIN-ALLOW:font-style:*
@WIN-ALLOW:ia2_hypertext=*
+@WIN-ALLOW:offset:*
+@WIN-ALLOW:text-line-through-style:*
+@WIN-ALLOW:text-line-through-type:*
+@WIN-ALLOW:text-underline-style:*
+@WIN-ALLOW:text-underline-type:*
-->
<!DOCTYPE html>
<html>
<body>
- <p>Normal <b>bold</b> <i>italic</i></p>
+ <p>The <b>quick</b> <i>brown</i> <u>fox</u> <b><i>jumped</i></b> <i><u>over</u></i> <b><i><u>dog</u></i></b></p>
<div contentEditable><span>Normal</span>
<span style="font-weight: bold;">bold</span>
<span style="font-style: italic;">italic</span>
+ <span style="text-decoration: underline;">underline</span>
+ <span style="text-decoration: line-through;">line-through</span>
</div>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698