OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <script src="../../resources/runner.js"></script> | 2 <script src="../../resources/runner.js"></script> |
3 <pre id="log"></pre> | 3 <pre id="log"></pre> |
4 <div id="target" style="display:none; -webkit-columns:3; column-fill:auto; heigh
t:300em;"> | 4 <div id="target" style="display:none; -webkit-columns:3; column-fill:auto; heigh
t:300em;"> |
5 Tenderloin ham boudin tongue sausage venison short ribs sirloin, kielbasa be
ef ribs. Strip steak | 5 Tenderloin ham boudin tongue sausage venison short ribs sirloin, kielbasa be
ef ribs. Strip steak |
6 shank bresaola salami spare ribs kielbasa fatback, cow t-bone flank leberkas
sirloin. Jowl pork | 6 shank bresaola salami spare ribs kielbasa fatback, cow t-bone flank leberkas
sirloin. Jowl pork |
7 belly ribeye, corned beef sirloin chicken salami tail. Rump swine ham shank
corned beef short | 7 belly ribeye, corned beef sirloin chicken salami tail. Rump swine ham shank
corned beef short |
8 loin, speck turkey pancetta shankle frankfurter. Pancetta tail fatback, grou
nd round brisket | 8 loin, speck turkey pancetta shankle frankfurter. Pancetta tail fatback, grou
nd round brisket |
9 biltong frankfurter turkey. Ham hock chicken strip steak, salami short ribs
beef ribs pork | 9 biltong frankfurter turkey. Ham hock chicken strip steak, salami short ribs
beef ribs pork |
10 sirloin pastrami pork loin turducken rump brisket andouille. | 10 sirloin pastrami pork loin turducken rump brisket andouille. |
(...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
649 tip tri-tip beef ribs prosciutto. Fatback shankle pork loin, sirloin bresaol
a corned beef pork | 649 tip tri-tip beef ribs prosciutto. Fatback shankle pork loin, sirloin bresaol
a corned beef pork |
650 tenderloin prosciutto beef. Ground round cow boudin flank rump ham hock veni
son pig pork | 650 tenderloin prosciutto beef. Ground round cow boudin flank rump ham hock veni
son pig pork |
651 capicola beef speck, bacon andouille. Beef sirloin ribeye sausage drumstick. | 651 capicola beef speck, bacon andouille. Beef sirloin ribeye sausage drumstick. |
652 </div> | 652 </div> |
653 <script> | 653 <script> |
654 var target = document.getElementById("target"); | 654 var target = document.getElementById("target"); |
655 var style = target.style; | 655 var style = target.style; |
656 | 656 |
657 function test() { | 657 function test() { |
658 style.display = "block"; | 658 style.display = "block"; |
659 PerfTestRunner.forceLayoutOrFullFrame(); | 659 PerfTestRunner.forceLayout(); |
660 style.display = "none"; | 660 style.display = "none"; |
661 PerfTestRunner.forceLayoutOrFullFrame(); | 661 PerfTestRunner.forceLayout(); |
662 } | 662 } |
663 | 663 |
664 PerfTestRunner.measureRunsPerSecond({ | 664 PerfTestRunner.measureRunsPerSecond({ |
665 description: "Measures performance of multicol layout with lots of lines
of text, no column balancing.", | 665 description: "Measures performance of multicol layout with lots of lines
of text, no column balancing.", |
666 run: test | 666 run: test |
667 }); | 667 }); |
668 </script> | 668 </script> |
OLD | NEW |