Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(104)

Side by Side Diff: LayoutTests/fast/table/form-with-non-table-display-inside-table-elements.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <body> 3 <body>
4 <style> 4 <style>
5 table { 5 table {
6 background:red; 6 background:red;
7 border-spacing:0; 7 border-spacing:0;
8 border-collapse:collapse; 8 border-collapse:collapse;
9 display:none 9 display:none
10 } 10 }
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 clonedTable = container.getElementsByTagName("TABLE")[0].cloneNode(true); 65 clonedTable = container.getElementsByTagName("TABLE")[0].cloneNode(true);
66 clonedTable.style.display = 'table'; 66 clonedTable.style.display = 'table';
67 container.appendChild(clonedTable); 67 container.appendChild(clonedTable);
68 shouldBe('clonedTable.getBoundingClientRect().width', '150'); 68 shouldBe('clonedTable.getBoundingClientRect().width', '150');
69 shouldBe('clonedTable.getBoundingClientRect().height', '20'); 69 shouldBe('clonedTable.getBoundingClientRect().height', '20');
70 } 70 }
71 71
72 var testCasesContainer = document.getElementById('testCases'); 72 var testCasesContainer = document.getElementById('testCases');
73 document.body.removeChild(testCasesContainer); 73 document.body.removeChild(testCasesContainer);
74 </script> 74 </script>
75 <script src="../js/resources/js-test-post.js"></script>
76 </body> 75 </body>
77 </html> 76 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/table/css-table-width.html ('k') | LayoutTests/fast/table/min-width-css-block-table.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698