jquery-ui/tests/visual/dialog/performance.html

74 lines
2.3 KiB
HTML
Raw Normal View History

2012-02-02 01:35:31 +00:00
<!doctype html>
<html lang="en">
<head>
2012-02-02 01:35:31 +00:00
<meta charset="utf-8">
<title>Dialog Visual Test - Modal Dialog in Large DOM</title>
<link rel="stylesheet" href="../../../themes/base/all.css">
<script src="../../../jquery.js"></script>
<script src="../../../ui/core.js"></script>
<script src="../../../ui/position.js"></script>
<script src="../../../ui/widget.js"></script>
<script src="../../../ui/mouse.js"></script>
<script src="../../../ui/draggable.js"></script>
<script src="../../../ui/resizable.js"></script>
<script src="../../../ui/button.js"></script>
<script src="../../../ui/dialog.js"></script>
2012-02-02 01:35:31 +00:00
<script>
$(function() {
2012-02-02 01:35:31 +00:00
var start,
2013-01-17 06:28:41 +00:00
html = new Array( 500 ).join( $.trim( $( "#template" ).html() ) );
2012-02-02 01:35:31 +00:00
$( html ).appendTo( "body" );
start = $.now();
$( "#dialog" ).dialog({
modal: true,
autoOpen: false
});
2012-02-02 01:35:31 +00:00
$( "<li>Create: " + ($.now() - start) + "ms</li>" ).appendTo( "#log" );
$( "#opener" ).click(function() {
start = $.now();
$( "#dialog" ).dialog( "open" );
$( "<li>Open: " + ($.now() - start) + "ms</li>" ).appendTo( "#log" );
});
});
</script>
</head>
<body>
2012-05-15 14:07:05 +00:00
<p>WHAT: A single dialog is created on a page with a large DOM.</p>
<p>EXPECTED: Creating and opening the dialog should be fast, regardless of page size.</p>
<button id="opener">open dialog</button>
<div id="dialog" title="Dialog Title">
<p> Dialog Content </p>
<input type="text">
</div>
2012-02-02 01:35:31 +00:00
<ul id="log"></ul>
<script type="text/html" id="template">
<div><div><div><div><div><div><div><div><div><div>
<div><div><div><div><div><div><div><div><div><div>
<div><div><div><div><div><div><div><div><div><div>
<div><div><div><div><div><div><div><div><div><div>
<div><div><div><div><div><div><div><div><div><div>
2012-05-15 14:07:05 +00:00
<div><p>This <span>is</span> <span>a</span> <strong>large</strong> <abbr>DOM</abbr>.</p></div>
2012-02-02 01:35:31 +00:00
<input>
<select>
<option>option 1</option>
<option>option 2</option>
<option>option 3</option>
<option>option 4</option>
<option>option 5</option>
</select>
</div></div></div></div></div></div></div></div></div></div>
</div></div></div></div></div></div></div></div></div></div>
</div></div></div></div></div></div></div></div></div></div>
</div></div></div></div></div></div></div></div></div></div>
</div></div></div></div></div></div></div></div></div></div>
</script>
</body>
</html>