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

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

Issue 14619018: As discussed in blink-dev mailing list remove getPropertyShorthand and isImplicit from the Web expo… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/css/font-shorthand.html
diff --git a/LayoutTests/fast/css/font-shorthand.html b/LayoutTests/fast/css/font-shorthand.html
index 8a4cf04d19bf136165ad242d8712368062ef36a2..ad7af5a971550e4c5aa04518d1ea1a5ba9a6f052 100644
--- a/LayoutTests/fast/css/font-shorthand.html
+++ b/LayoutTests/fast/css/font-shorthand.html
@@ -16,12 +16,7 @@ function testFontValue(value)
decl.font = "";
decl.font = value;
for (var i = 0; i < decl.length; i++) {
- var shorthand = decl.getPropertyShorthand(decl[i]);
document.write(decl[i] + ": " + decl.getPropertyValue(decl[i]));
- if (shorthand) {
- document.write(" (original property was " + shorthand
- + (decl.isPropertyImplicit(decl[i]) ? " and property was implicitly set.)" : ")"));
- }
document.write("<br>");
}
document.write("<br>");

Powered by Google App Engine
This is Rietveld 408576698