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

Side by Side Diff: tools/telemetry/unittest_data/blink_style.html

Issue 1217293007: Move unittest_data to internal/testing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 5 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
(Empty)
1 <!DOCTYPE html>
2 <body>
3 Test Page for Blink Style measurement.
4 <script>
5 var css = '';
6 for (var i = 0; i < 1000; i++) {
7 css += 'div { background: green }\n';
8 }
9 var style = document.createElement('style');
10 style.textContent = css;
11 document.head.appendChild(style);
12 for (var i = 0; i < 1000; i++) {
13 document.body.appendChild(document.createElement('div'));
14 }
15 </script>
OLDNEW
« no previous file with comments | « tools/telemetry/unittest_data/blank.html ('k') | tools/telemetry/unittest_data/component_extension/background.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698