| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2012 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. |
| 4 |
| 5 // This file contains various hacks needed to inform JSCompiler of various |
| 6 // WebKit-specific properties and methods. It is used only with JSCompiler |
| 7 // to verify the type-correctness of our code. |
| 8 |
| 9 /** @type Array.<HTMLElement> */ |
| 10 Document.prototype.all; |
| 11 |
| 12 /** @return {void} Nothing. */ |
| 13 Document.prototype.webkitCancelFullScreen = function() {}; |
| 14 |
| 15 /** @type {boolean} */ |
| 16 Document.prototype.webkitIsFullScreen; |
| 17 |
| 18 /** @return {void} Nothing. */ |
| 19 Element.prototype.webkitRequestFullScreen = function() {}; |
| OLD | NEW |