Upstreaming browser/ui/uikit_ui_util from iOS.
[chromium-blink-merge.git] / extensions / test / data / web_view / apitest / inject_resize_test.js
blob6417ad1472c6ed80617355a2d80c5233223517c6
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 window.addEventListener('resize', function(e) {
6   if (!embedder) {
7     return;
8   }
9   var msg = ['resize', document.body.clientWidth, document.body.clientHeight];
10   embedder.postMessage(JSON.stringify(msg), '*');
11 });