gecko/toolkit/components/console/hudservice/tests/browser/test-bug-613013-console-api-iframe.html
Gavin Sharp b6b0090f8b Bug 609950: fix code in the HUDConsoleObserver to properly handle subframes, r=ddahl, feedback=msucan, a=blocking
--HG--
extra : rebase_source : 7a8da9274499eae668b5275ff4c6073820000051
2010-11-18 15:33:27 -05:00

21 lines
555 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>test for bug 613013</title>
<!-- Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ -->
</head>
<body>
<p>test for bug 613013</p>
<script type="text/javascript"><!--
(function () {
var iframe = document.createElement('iframe');
iframe.src = 'data:text/html,little iframe';
document.body.appendChild(iframe);
console.log("foobarBug613013");
})();
// --></script>
</body>
</html>