bug 671799 - add tests for null URI in @font-face load-failure logging. r=bzbarsky

This commit is contained in:
Jonathan Kew 2011-07-15 15:52:29 +01:00
Родитель e9156bfd4d
Коммит 9b9b930c2e
3 изменённых файлов: 25 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,6 @@
<!DOCTYPE html>
<html>
<body>
<iframe src="data:text/html,<style>@font-face { font-family: 'x'; src: url(x.ttf); } :root { font-family: 'x'; }</style>"></iframe>
</body>
</html>

Просмотреть файл

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
@font-face {
font-family: foo;
src: url("http://spaces in hostname/");
}
body {
font-family: foo, monospace;
}
</style>
</head>
<body>
foo bar
</body>
</html>

Просмотреть файл

@ -69,3 +69,5 @@ load 645142.html
load 611922-1.html
== 645951-1.html 645951-1-ref.html
load 665209-1.html
load 671799-1.html
load 671799-2.html