зеркало из https://github.com/mozilla/gecko-dev.git
21 строка
441 B
HTML
21 строка
441 B
HTML
<!DOCTYPE html>
|
|
<!--
|
|
Reftest for Bug 1367860
|
|
Case 2: Language tag on descendant / font-family on ancestor
|
|
(fails before patch)
|
|
-->
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
</head>
|
|
<body>
|
|
<div lang="ja" style="font-family: InvalidFontName;">
|
|
These two lines should be exactly the same.
|
|
</div>
|
|
<div style="font-family: InvalidFontName;"><div lang="ja">
|
|
These two lines should be exactly the same.
|
|
</div></div>
|
|
</body>
|
|
</html>
|