mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
Add crashtest
This commit is contained in:
parent
be12b90412
commit
e7ea1cc740
2 changed files with 32 additions and 0 deletions
|
@ -39144,6 +39144,12 @@
|
|||
{}
|
||||
]
|
||||
],
|
||||
"mozilla/table_rowspan_colspan_crashtest.html": [
|
||||
[
|
||||
"/_mozilla/mozilla/table_rowspan_colspan_crashtest.html",
|
||||
{}
|
||||
]
|
||||
],
|
||||
"mozilla/textcontent.html": [
|
||||
[
|
||||
"/_mozilla/mozilla/textcontent.html",
|
||||
|
@ -70765,6 +70771,10 @@
|
|||
"f43703402d539a05a55990cd2a03c50eabea122b",
|
||||
"support"
|
||||
],
|
||||
"mozilla/table_rowspan_colspan_crashtest.html": [
|
||||
"6890b7ec8b29dd5fb02c8e93035728f2b5bf8668",
|
||||
"testharness"
|
||||
],
|
||||
"mozilla/table_valign_bottom.html": [
|
||||
"43814fb9c385f2501ff88673acf4b58079670015",
|
||||
"reftest"
|
||||
|
|
|
@ -0,0 +1,22 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title></title>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script>
|
||||
var load_test = async_test("Doesn't crash");
|
||||
</script>
|
||||
</head>
|
||||
<body onload="load_test.done()">
|
||||
<!-- Shouldn't crash (#20162) -->
|
||||
<table border>
|
||||
<tr><td>a</td><td>b</td><td>c</td><td>d</td></tr>
|
||||
<tr><td rowspan=2>a</td><td>b</td><td colspan=2 rowspan=2>cd</td> </tr>
|
||||
<tr> <td>b</td></tr>
|
||||
<tr><td>a</td><td>b</td><td>c</td><td>d</td></tr>
|
||||
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue