This commit is contained in:
Jesse Ruderman 2010-04-11 16:59:47 -07:00
Родитель 3980f7ac34
Коммит 2fb87d02cc
7 изменённых файлов: 68 добавлений и 0 удалений

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

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg"><g transform="10 20"><animateTransform attributeName="transform"/></g></svg>

После

Ширина:  |  Высота:  |  Размер: 117 B

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

@ -44,3 +44,4 @@ load 428841-1.svg
load 435209-1.svg
load 448244-1.svg
load 466576-1.xhtml
load 535691-1.svg

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

@ -0,0 +1,14 @@
<html>
<head>
<title>Testcase for bug 538065</title>
<style type="text/css">
span.test { background: #ff0; }
</style>
</head>
<body>
<p>U+FEFF: <span class="test">&#xfeff;</span></p>
<p>U+FFF9: <span class="test">&#xfff9;</span></p>
<p>U+FFFA: <span class="test">&#xfffa;</span></p>
<p>U+FFFB: <span class="test">&#xfffb;</span></p>
</body>
</html>

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

@ -64,4 +64,5 @@ load 470418-1.html
load 487549-1.html
load 487724-1.html
load 490777-1.html
load 538065-1.html
load balinese-letter-spacing.html

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

@ -0,0 +1,27 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript">
function boom()
{
var newTD = document.createElementNS("http://www.w3.org/1999/xhtml", "td");
newTD.setAttribute("rowspan", 3);
document.getElementById("tr1").appendChild(newTD);
document.documentElement.offsetHeight;
var newTR = document.createElementNS("http://www.w3.org/1999/xhtml", "tr");
document.getElementById("table").appendChild(newTR);
}
</script>
</head>
<body onload="boom();">
<table id="table">AAAA<tr id="tr1"></tr><tr><td><div style="-moz-column-width: 1px;">B C</div></td></tr></table>
</body>
</html>

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

@ -0,0 +1,22 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript">
function boom()
{
var newTD = document.createElementNS("http://www.w3.org/1999/xhtml", "td");
newTD.setAttribute("rowspan", 3);
document.getElementById("tr1").appendChild(newTD);
}
</script>
</head>
<body onload="boom();">
<table id="table" border="1">AAAA<tr id="tr1"></tr><tr><td><div style="-moz-column-width: 1px;">B C</div></td></tr></table>
</body>
</html>

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

@ -253,6 +253,8 @@ load 467493-1.html
load 467493-2.html
load 467914-1.html
load 468207-1.html
load 468771-1.xhtml
load 468771-2.xhtml
load 469859-1.xhtml
load 472587-1.xhtml
load 472774-1.html