perf.1.html 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>HTML5 Shiv</title>
  6. <link rel="stylesheet" href="style.css">
  7. <script src="../src/html5shiv-printshiv.js"></script>
  8. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.js"></script>
  9. </head>
  10. <body>
  11. <div id="time"></div>
  12. <section>This sentence is in a green box <mark>with these words highlighted</mark>.</section>
  13. <script>
  14. function addDom(){
  15. var div, frag, fragDiv, divFrag, divFragDiv;
  16. div = document.createElement('div');
  17. div.innerHTML = '<section>This native javascript sentence is in a green box <mark>with these words highlighted</mark>?</section>';
  18. frag = document.createDocumentFragment();
  19. frag.appendChild(div);
  20. div.innerHTML += '<section>This native javascript sentence is also in a green box <mark>with these words highlighted</mark>?</section>';
  21. document.body.appendChild(frag);
  22. frag = document.createDocumentFragment();
  23. fragDiv = frag.appendChild(document.createElement('div'));
  24. fragDiv.innerHTML = '<section>This native javascript sentence is in a green box <mark>with these words highlighted</mark>?</section>';
  25. document.body.appendChild(fragDiv);
  26. jQuery(document.body).append('<section>This jQuery 1.6.4 sentence is in a green box <mark>with these words highlighted</mark>?</section><section>This jQuery 1.6.4 sentence is in a green box <mark>with these words highlighted</mark>?</section>');
  27. }
  28. var time = document.getElementById('time');
  29. var cur = new Date().getTime();
  30. for(var i = 0; i < 1000; i++){
  31. addDom();
  32. }
  33. time.innerHTML = new Date().getTime() - cur;
  34. </script>
  35. <body>
  36. </html>