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

Side by Side Diff: LayoutTests/fast/box-sizing/table-cell.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 <link rel="stylesheet" href="../js/resources/js-test-style.css"> 2 <link rel="stylesheet" href="../js/resources/js-test-style.css">
3 3
4 <style> 4 <style>
5 .styledForTest { 5 .styledForTest {
6 -moz-box-sizing: border-box; 6 -moz-box-sizing: border-box;
7 box-sizing: border-box; 7 box-sizing: border-box;
8 background-color: orange; 8 background-color: orange;
9 color: white; 9 color: white;
10 border: 7px solid black; 10 border: 7px solid black;
(...skipping 22 matching lines...) Expand all
33 description('Tests that display: table-cell and box-sizing: border-box work when used together.'); 33 description('Tests that display: table-cell and box-sizing: border-box work when used together.');
34 34
35 ['div-display-table-cell', 'td'].forEach(function (id) { 35 ['div-display-table-cell', 'td'].forEach(function (id) {
36 debug(id); 36 debug(id);
37 element = document.querySelector('#' + id); 37 element = document.querySelector('#' + id);
38 shouldBe('element.offsetWidth', '80'); 38 shouldBe('element.offsetWidth', '80');
39 shouldBe('element.offsetHeight', '30'); 39 shouldBe('element.offsetHeight', '30');
40 }); 40 });
41 41
42 </script> 42 </script>
43 <script src="../js/resources/js-test-post.js"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698