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

Unified Diff: LayoutTests/fast/css3-text/css3-text-justify/getComputedStyle/getComputedStyle-text-justify-inherited-expected.txt

Issue 17155007: [CSS3] Parsing the property, text-justify. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@parsingTextJustify
Patch Set: Created 7 years, 5 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-justify/getComputedStyle/getComputedStyle-text-justify-inherited-expected.txt
diff --git a/LayoutTests/fast/css3-text/css3-text-justify/getComputedStyle/getComputedStyle-text-justify-inherited-expected.txt b/LayoutTests/fast/css3-text/css3-text-justify/getComputedStyle/getComputedStyle-text-justify-inherited-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..03d976dbcdcb67207f7827dcd909594fcad73a83
--- /dev/null
+++ b/LayoutTests/fast/css3-text/css3-text-justify/getComputedStyle/getComputedStyle-text-justify-inherited-expected.txt
@@ -0,0 +1,33 @@
+This test checks that the value of text-justify is properly inherited to the child.
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+Value of ancestor is 'auto':
+PASS window.getComputedStyle(ancestor).getPropertyCSSValue('text-justify').cssText is 'auto'
+PASS window.getComputedStyle(child).getPropertyCSSValue('text-justify').cssText is 'auto'
+
+Value of ancestor is 'none':
+PASS window.getComputedStyle(ancestor).getPropertyCSSValue('text-justify').cssText is 'none'
+PASS window.getComputedStyle(child).getPropertyCSSValue('text-justify').cssText is 'none'
+
+Value of ancestor is 'inter-word':
+PASS window.getComputedStyle(ancestor).getPropertyCSSValue('text-justify').cssText is 'inter-word'
+PASS window.getComputedStyle(child).getPropertyCSSValue('text-justify').cssText is 'inter-word'
+
+Value of ancestor is 'distribute':
+PASS window.getComputedStyle(ancestor).getPropertyCSSValue('text-justify').cssText is 'distribute'
+PASS window.getComputedStyle(child).getPropertyCSSValue('text-justify').cssText is 'distribute'
+
+Value of ancestor is 'inter-word, while child is 'distribute':
+PASS window.getComputedStyle(ancestor).getPropertyCSSValue('text-justify').cssText is 'inter-word'
+PASS window.getComputedStyle(child).getPropertyCSSValue('text-justify').cssText is 'distribute'
+
+Value of ancestor is 'none, while child is 'distribute':
+PASS window.getComputedStyle(ancestor).getPropertyCSSValue('text-justify').cssText is 'none'
+PASS window.getComputedStyle(child).getPropertyCSSValue('text-justify').cssText is 'distribute'
+
+PASS successfullyParsed is true
+
+TEST COMPLETE
+hello world

Powered by Google App Engine
This is Rietveld 408576698