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

Side by Side Diff: LayoutTests/fast/multicol/old/float-truncation.html

Issue 299373006: Move old multicol tests to a separate directory. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 months 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
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <style> 3 <style>
4 div.columns { 4 div.columns {
5 width: 200px; 5 width: 200px;
6 -webkit-columns: 2; 6 -webkit-columns: 2;
7 -webkit-column-gap: 0; 7 -webkit-column-gap: 0;
8 columns: 2; 8 columns: 2;
9 column-gap: 0; 9 column-gap: 0;
10 column-fill: auto; 10 column-fill: auto;
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 failures++ 98 failures++
99 } 99 }
100 100
101 if (window.testRunner) { 101 if (window.testRunner) {
102 testRunner.dumpAsText(); 102 testRunner.dumpAsText();
103 document.getElementById("tests").style.display = "none"; 103 document.getElementById("tests").style.display = "none";
104 } 104 }
105 105
106 document.getElementById("result").innerText = failures ? "FAIL: " + failures + " cases failed" : "PASS"; 106 document.getElementById("result").innerText = failures ? "FAIL: " + failures + " cases failed" : "PASS";
107 </script> 107 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698