Commit 5eddbd1d authored by qyearsley's avatar qyearsley Committed by Commit bot

Run spellchecker on fast/table tests.

Review-Url: https://codereview.chromium.org/2564123002
Cr-Commit-Position: refs/heads/master@{#439518}
parent 707a5e40
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
</style> </style>
</head> </head>
<body> <body>
<!-- bug 34758: TD width in precentage doesn't work. --> <!-- bug 34758: TD width in percentage doesn't work. -->
<!-- The 2 green rectangles should have the same width. --> <!-- The 2 green rectangles should have the same width. -->
<table id="table" width="50%" height="100%"> <table id="table" width="50%" height="100%">
<tr> <tr>
......
...@@ -44,7 +44,7 @@ row5 col1 ...@@ -44,7 +44,7 @@ row5 col1
PASS PASS
row6 col0 row6 col0
PASS PASS
Test 3 - 2 same row spanning cells with diffrent heights. Test 3 - 2 same row spanning cells with different heights.
row0 col0 rowspan=6 height=300px row0 col1 rowspan=6 height=500px row0 col0 rowspan=6 height=300px row0 col1 rowspan=6 height=500px
PASS PASS
...@@ -78,7 +78,7 @@ row6 col2 ...@@ -78,7 +78,7 @@ row6 col2
PASS PASS
row7 col0 row7 col0
PASS PASS
Test 5 - 2 spanning cells starts at diffrent row index but end at same row index. Test 5 - 2 spanning cells starts at different row index but end at same row index.
row0 col0 rowspan=6 height=400px row0 col1 row0 col0 rowspan=6 height=400px row0 col1
PASS PASS
......
...@@ -68,7 +68,7 @@ ...@@ -68,7 +68,7 @@
</tr> </tr>
</tbody> </tbody>
</table> </table>
<h5>Test 3 - 2 same row spanning cells with diffrent heights.</h5> <h5>Test 3 - 2 same row spanning cells with different heights.</h5>
<table border="1"> <table border="1">
<tbody> <tbody>
<tr data-expected-height="0"> <tr data-expected-height="0">
...@@ -125,7 +125,7 @@ ...@@ -125,7 +125,7 @@
</tr> </tr>
</tbody> </tbody>
</table> </table>
<h5>Test 5 - 2 spanning cells starts at diffrent row index but end at same row index.</h5> <h5>Test 5 - 2 spanning cells starts at different row index but end at same row index.</h5>
<table border="1"> <table border="1">
<tbody> <tbody>
<tr data-expected-height="35"> <tr data-expected-height="35">
......
<!DOCTYPE html> <!DOCTYPE html>
<!-- Test passes if you see three blue boxes in three seperate rows. --> <!-- Test passes if you see three blue boxes in three separate rows. -->
<html style="font: 1em/1 Ahem, sans-serif;"> <html style="font: 1em/1 Ahem, sans-serif;">
<style type="text/css"> <style type="text/css">
.container:before { .container:before {
......
<!DOCTYPE html> <!DOCTYPE html>
<!-- Test passes if you see three blue boxes in three seperate rows. --> <!-- Test passes if you see three blue boxes in three separate rows. -->
<html style="font: 1em/1 Ahem, sans-serif;"> <html style="font: 1em/1 Ahem, sans-serif;">
<style type="text/css"> <style type="text/css">
.container:before { .container:before {
......
<!DOCTYPE html> <!DOCTYPE html>
<!-- Test passes if you see three blue boxes in three seperate rows. --> <!-- Test passes if you see three blue boxes in three separate rows. -->
<html style="font: 1em/1 Ahem, sans-serif;"> <html style="font: 1em/1 Ahem, sans-serif;">
<style type="text/css"> <style type="text/css">
.container:before { .container:before {
......
Test for chromium bug : 305169. <colgroup> is ignored if seen after <tr>. Test for chromium bug : 305169. <colgroup> is ignored if seen after <tr>.
Columns width are not based on width specified in colGroup becuase colGroup is present after table row and we was supporting it only when colGroup is present at the start in table. Columns width are not based on width specified in colGroup because colGroup is present after table row and we was supporting it only when colGroup is present at the start in table.
First First
PASS PASS
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
</head> </head>
<body onload="checkLayout('td')"> <body onload="checkLayout('td')">
<h3>Test for chromium bug : <a href="https://code.google.com/p/chromium/issues/detail?id=305169">305169</a>. &lt;colgroup&gt; is ignored if seen after &lt;tr&gt;.</h3> <h3>Test for chromium bug : <a href="https://code.google.com/p/chromium/issues/detail?id=305169">305169</a>. &lt;colgroup&gt; is ignored if seen after &lt;tr&gt;.</h3>
<h4>Columns width are not based on width specified in colGroup becuase colGroup is present after table row and we was supporting it only when colGroup is present at the start in table.</h4> <h4>Columns width are not based on width specified in colGroup because colGroup is present after table row and we was supporting it only when colGroup is present at the start in table.</h4>
<table style="width: 100%;" border=1px> <table style="width: 100%;" border=1px>
<tbody> <tbody>
<tr> <tr>
......
<html> <html>
<body> <body>
<!-- https://bugs.webkit.org/show_bug.cgi?id=72180 : CSS table with 100% width overflow their container block --> <!-- https://bugs.webkit.org/show_bug.cgi?id=72180 : CSS table with 100% width overflow their container block -->
<!-- The test passes if the inner table has 2 seperate borders in all corners. --> <!-- The test passes if the inner table has 2 separate borders in all corners. -->
<div style='display:table; border: 1px solid black; width: 500px; height: 500px; padding: 10px;'> <div style='display:table; border: 1px solid black; width: 500px; height: 500px; padding: 10px;'>
<div style='display:table-row; border: 1px solid red;'> <div style='display:table-row; border: 1px solid red;'>
<div style='display:table-cell; border: 1px solid blue;'> <div style='display:table-cell; border: 1px solid blue;'>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<html> <html>
<body> <body>
<!-- https://bugs.webkit.org/show_bug.cgi?id=72180 : CSS table with 100% width overflow their container block --> <!-- https://bugs.webkit.org/show_bug.cgi?id=72180 : CSS table with 100% width overflow their container block -->
<!-- The test passes if the inner table has 2 seperate borders in all corners. --> <!-- The test passes if the inner table has 2 separate borders in all corners. -->
<div style='display:table; border: 1px solid black; width: 500px; height: 500px; padding: 10px;'> <div style='display:table; border: 1px solid black; width: 500px; height: 500px; padding: 10px;'>
<div style='display:table-row; border: 1px solid red;'> <div style='display:table-row; border: 1px solid red;'>
<div style='display:table-cell; border: 1px solid blue;'> <div style='display:table-cell; border: 1px solid blue;'>
......
<!DOCTYPE html> <!DOCTYPE html>
<!-- Test passes if you see three blue boxes in three seperate rows. --> <!-- Test passes if you see three blue boxes in three separate rows. -->
<html style="font: 1em/1 Ahem, sans-serif;"> <html style="font: 1em/1 Ahem, sans-serif;">
<style type="text/css"> <style type="text/css">
.container:before .container:before
......
<!DOCTYPE html> <!DOCTYPE html>
<!-- Test passes if you see three blue boxes in three seperate rows. --> <!-- Test passes if you see three blue boxes in three separate rows. -->
<html style="font: 1em/1 Ahem, sans-serif;"> <html style="font: 1em/1 Ahem, sans-serif;">
<style type="text/css"> <style type="text/css">
.container:before .container:before
......
...@@ -422,5 +422,5 @@ bindings-tests ...@@ -422,5 +422,5 @@ bindings-tests
04:38:02 4 failures6 new passes11 flakes13 missing results 04:38:02 4 failures6 new passes11 flakes13 missing results
triggeredgtk-linux-64-release-tests-wk2 triggeredgtk-linux-64-release-tests-wk2
04:30:45 uploadingrelease.zip 04:30:45 uploadingrelease.zip
04:28:43 Failure: timeout occured during testing 04:28:43 Failure: timeout occurred during testing
uploaded results ] uploaded results ]
...@@ -1949,7 +1949,7 @@ ...@@ -1949,7 +1949,7 @@
</tr> </tr>
<tr> <tr>
<td rowspan="2">04:28:43</td> <td rowspan="2">04:28:43</td>
<td rowspan="1">Failure: timeout occured during testing</td> <td rowspan="1">Failure: timeout occurred during testing</td>
</tr> </tr>
<tr> <tr>
<td rowspan="1"></td> <td rowspan="1"></td>
......
...@@ -60,7 +60,7 @@ row5 col1 ...@@ -60,7 +60,7 @@ row5 col1
PASS PASS
row6 col0 row6 col0
PASS PASS
Test 3 - 2 same row spanning cells with diffrent heights. Test 3 - 2 same row spanning cells with different heights.
row0 col0 rowspan=6 height=300px row0 col1 rowspan=6 height=500px row0 col0 rowspan=6 height=300px row0 col1 rowspan=6 height=500px
PASS PASS
...@@ -125,7 +125,7 @@ row6 col2 ...@@ -125,7 +125,7 @@ row6 col2
PASS PASS
row7 col0 row7 col0
PASS PASS
Test 5 - 2 spanning cells starts at diffrent row index but end at same row index. Test 5 - 2 spanning cells starts at different row index but end at same row index.
row0 col0 rowspan=6 height=400px row0 col1 row0 col0 rowspan=6 height=400px row0 col1
PASS PASS
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment