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

Side by Side Diff: LayoutTests/css3/calc/margin.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
« no previous file with comments | « LayoutTests/css3/calc/line-height.html ('k') | LayoutTests/css3/calc/table-border-spacing.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <script src="../../fast/js/resources/js-test-pre.js"></script> 2 <script src="../../fast/js/resources/js-test-pre.js"></script>
3 <style> 3 <style>
4 div { display: inline-block; } 4 div { display: inline-block; }
5 p { width: 200px; height: 120px; margin: 0px; } 5 p { width: 200px; height: 120px; margin: 0px; }
6 #simple-all { margin: calc(13px + 12px); } 6 #simple-all { margin: calc(13px + 12px); }
7 #simple-left { margin-left: calc(13px + 12px); } 7 #simple-left { margin-left: calc(13px + 12px); }
8 #simple-right { margin-right: calc(13px + 12px); } 8 #simple-right { margin-right: calc(13px + 12px); }
9 #simple-top { margin-top: calc(13px + 12px); } 9 #simple-top { margin-top: calc(13px + 12px); }
10 #simple-bottom { margin-bottom: calc(13px + 12px); } 10 #simple-bottom { margin-bottom: calc(13px + 12px); }
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 shouldBeEqualToString('computedMarginRight("' + innerElement.id + '")', expectedRight); 86 shouldBeEqualToString('computedMarginRight("' + innerElement.id + '")', expectedRight);
87 shouldBeEqualToString('computedMarginBottom("' + innerElement.id + '")', expectedBottom); 87 shouldBeEqualToString('computedMarginBottom("' + innerElement.id + '")', expectedBottom);
88 } 88 }
89 89
90 if (window.testRunner) { 90 if (window.testRunner) {
91 var testContainer = document.getElementById("test-container"); 91 var testContainer = document.getElementById("test-container");
92 if (testContainer) 92 if (testContainer)
93 document.body.removeChild(testContainer); 93 document.body.removeChild(testContainer);
94 } 94 }
95 </script> 95 </script>
96 <script src="../../fast/js/resources/js-test-post.js"></script>
OLDNEW
« no previous file with comments | « LayoutTests/css3/calc/line-height.html ('k') | LayoutTests/css3/calc/table-border-spacing.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698