aisiksalan / chrome-screen-capture

Automatically exported from code.google.com/p/chrome-screen-capture
0 stars 0 forks source link

onResize not firing #167

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
When I enable the plugin, window.onresize stops working.

1. My testpage:
<html>
<head>
    <script type="text/javascript">
        function doResize() {
                alert('[window.resize event]');
        }
        window.onresize = doResize;
    </script>
</head>
<body>
    <p>Now try resize...</p>
</body>
</html>

2. Visit page and maximize window
3. Disable plugin and repeat #2

This is observed on Windows7 64bit, using Chrome 14.0.835.202m & Screen Capture 
5.0.3.

Original issue reported on code.google.com by jan...@gmail.com on 17 Oct 2011 at 1:30