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

Unified Diff: LayoutTests/inspector-protocol/css-get-platform-fonts.html

Issue 22903030: DevTools: CSS.getPlatformFontsForNode to return a cssFamilyName as well (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fixed description Created 7 years, 4 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/inspector-protocol/css-get-platform-fonts-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/inspector-protocol/css-get-platform-fonts.html
diff --git a/LayoutTests/inspector-protocol/css-get-platform-fonts.html b/LayoutTests/inspector-protocol/css-get-platform-fonts.html
index a2e0758ecb12cf3531a1a9ef011d0035d5bb6097..dc900e715a9abb5cb0db3dd3dc08e5f83248aeb6 100644
--- a/LayoutTests/inspector-protocol/css-get-platform-fonts.html
+++ b/LayoutTests/inspector-protocol/css-get-platform-fonts.html
@@ -32,6 +32,8 @@ function test()
function onGotComputedFonts(response)
{
+ var cssFamilyName = response.cssFamilyName;
+ InspectorTest.log("cssFamilyName: " + cssFamilyName);
var fonts = response.fonts;
fonts.sort(function(a, b) {
return b.glyphCount - a.glyphCount;
« no previous file with comments | « no previous file | LayoutTests/inspector-protocol/css-get-platform-fonts-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698