1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
<html>
<head>
<script type="text/javascript" src="../../http/tests/inspector-protocol/inspector-protocol-test.js"></script>
<script type="text/javascript" src="../../http/tests/inspector-protocol/css-protocol-test.js"></script>
<script type="text/javascript" src="../../http/tests/inspector-protocol/dom-protocol-test.js"></script>
<script type="text/javascript">
function test()
{
var documentNodeId;
InspectorTest.requestDocumentNodeId(onDocumentNodeId);
function onDocumentNodeId(nodeId)
{
documentNodeId = nodeId;
InspectorTest.runTestSuite([
function testFirstLetterPseudoClass(next)
{
platformFontsForElementWithSelector("#fancy", next);
},
function testSelectElementPlatformFonts(next)
{
platformFontsForElementWithSelector("select", next);
}
]);
}
function platformFontsForElementWithSelector(selector, callback)
{
InspectorTest.requestNodeId(documentNodeId, selector, onNodeId);
function onNodeId(nodeId)
{
InspectorTest.sendCommandOrDie("CSS.getPlatformFontsForNode", { nodeId: nodeId }, onGotComputedFonts);
}
function onGotComputedFonts(response)
{
dumpComputedFonts(response);
callback();
}
}
function dumpComputedFonts(response)
{
var fonts = response.fonts;
fonts.sort(function(a, b) {
return b.glyphCount - a.glyphCount;
});
for (var i = 0; i < fonts.length; ++i)
fonts[i].familyName = "<Some-family-name-" + i + ">";
for (var i = 0; i < fonts.length; ++i) {
var lines = [
"Font #" + i,
" name: " + fonts[i].familyName,
" glyphCount: " + fonts[i].glyphCount,
" isCustomFont: " + fonts[i].isCustomFont
];
InspectorTest.log(lines.join("\n"));
}
}
};
window.addEventListener("DOMContentLoaded", function () {
runTest();
}, false);
</script>
<style>
@font-face {
font-family: "ahem";
src: url('./resources/Ahem.ttf');
}
#fancy {
font-family: "ahem";
background-color: gray;
}
#fancy:first-letter {
font-family: 'Times New Roman';
font-size: 400%;
background-color: blue;
}
#fancy:first-line {
font-family: 'Courier New';
background-color: yellow;
}
</style>
</head>
<body>
<div id="fancy">
7chars.<br>
Some line with 29 characters.
</div>
<select>
<option>Short</option>
<option selected>Option with a lot of chars.</option>
</select>
</body>
</html>
|