Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / font-face-used-after-retired.html
blob49751779ce5ceb6e431c94533e1dff4291788425
1 <style>
2 @font-face {
3 font-family: custom;
4 src: url(no-such-file.ttf);
6 </style>
7 <!-- content: counter(page) causes the style diff to be "detach" -->
8 <div style="font-family: custom; content: counter(page);">
9 <br>PASS
10 </div>
11 <script>
12 if (window.testRunner) {
13 testRunner.dumpAsText();
14 testRunner.waitUntilDone();
15 // Must wait for the font to fail to load.
16 setTimeout(function() { testRunner.notifyDone() }, 100);
19 document.execCommand("SelectAll");
20 </script>