iframe-test.js revision 2092be7131c8982ced7a1825e9f9e56063979ab2
for (var i = 0; i < 1000000; i++) {
// Simulate a whole bunch of JavaScript parsing and execution to help exaggerate the problem.
};
YUI({
base: '../../build/'
}).use('*', function(Y) {
Y.on('domready',
function() {
try {
} catch (e) {
alert('onDOMReady fired before the DOM was ready :(');
}
}
);
});