summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css/font-face-remove.html
blob: 9f76e80bd388232a5943b4d7438506caa2592124 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<html>
<head>
<script>
function runTest() {
    var target = document.getElementById('target');
    document.body.offsetLeft;
    target.parentNode.removeChild(target);
}
</script>
</head>
<body onload="runTest()">
<style id="target">
@font-face {
    font-family: f1;
    font-weight: 100;
    src: url(../../resources/Ahem.ttf);
}
</style>
<!-- crbug.com/305885: when removing stylesheets, consider @font-face rules. -->
<span style="font-family: f1; font-weight: 100">A</span>
</body>
</html>