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

Unified Diff: LayoutTests/fast/css/font-shorthand-keywords.html

Issue 150333003: Expand the "font" shorthand when specified using a system font keyword. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Assert the value list size and check it before calling parseKeywordBasedFont() Created 6 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
« no previous file with comments | « no previous file | LayoutTests/fast/css/font-shorthand-keywords-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/css/font-shorthand-keywords.html
diff --git a/LayoutTests/fast/css/font-shorthand-keywords.html b/LayoutTests/fast/css/font-shorthand-keywords.html
new file mode 100644
index 0000000000000000000000000000000000000000..b74d40766d3a2b5bccb10fd3b3e8def9b3dbb1fa
--- /dev/null
+++ b/LayoutTests/fast/css/font-shorthand-keywords.html
@@ -0,0 +1,42 @@
+<html>
+<head>
+<script>
+ if (window.testRunner)
+ testRunner.dumpAsText();
+</script>
+</head>
+<body>
+<div id="foo">Test</div>
+<script>
+function testFontValue(value)
+{
+ document.write("Font for '" + value + "':<br>");
+ var element = document.getElementById("foo");
+ var decl = element.style;
+ decl.font = "";
+ decl.font = value;
+ for (var i = 0; i < decl.length; i++) {
+ document.write(decl[i] + ": " + decl.getPropertyValue(decl[i]));
+ document.write("<br>");
+ }
+ document.write("<br>");
+}
+
+testFontValue("caption");
+testFontValue("icon");
+testFontValue("menu");
+testFontValue("message-box");
+testFontValue("small-caption");
+testFontValue("status-bar");
+testFontValue("-webkit-mini-control");
+testFontValue("-webkit-small-control");
+testFontValue("-webkit-control");
+
+// Invalid values should yield no longhands.
+testFontValue("caption italic");
+testFontValue("icon 12px");
+testFontValue("icon 12px serif");
+testFontValue("menu italic 12px");
+</script>
+</body>
+</html>
« no previous file with comments | « no previous file | LayoutTests/fast/css/font-shorthand-keywords-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698