HomeSort by relevance Sort by last modified time
    Searched refs:autosize (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/extensions/test/data/web_view/apitest/
main.js 114 // Makes sure 'sizechanged' event is fired only if autosize attribute is
116 // After loading <webview> without autosize attribute and a size, say size1,
117 // we set autosize attribute and new min size with size2. We would get (only
126 // This would be triggered after we set autosize attribute.
132 // Remove autosize attribute and expect webview to return to its
134 webview.removeAttribute('autosize');
155 webview.setAttribute('autosize', true);
168 // This test verifies that if a browser plugin is in autosize mode before
173 webview.setAttribute('autosize', 'true');
189 // This test verifies that a lengthy page with autosize enabled will repor
    [all...]
  /external/chromium_org/chrome/renderer/resources/extensions/
extension_options.js 14 // Mapping of the autosize attribute names to default values
16 'autosize': 'on',
56 'autosize': this.extensionoptionsNode.hasAttribute('autosize'),
129 'enableAutoSize': this.extensionoptionsNode.hasAttribute('autosize'),
189 'enableAutoSize': this.extensionoptionsNode.hasAttribute('autosize'),
270 * size. If set to true, when the element receives new autosize dimensions,
274 * When set to false, the element resizes whenever it receives new autosize
284 * Allows the element to resize to most recent set of autosize dimensions if
  /packages/apps/Browser/src/com/android/browser/
BrowserSettings.java 363 final LayoutAlgorithm autosize = Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT ? local
367 layoutAlgorithm = autosize;
373 layoutAlgorithm = autosize;
  /external/chromium_org/extensions/renderer/resources/
web_view.js 19 var WEB_VIEW_ATTRIBUTE_AUTOSIZE = 'autosize';
455 // Convert autosize attribute to boolean.
456 var autosize = this.webviewNode.hasAttribute(WEB_VIEW_ATTRIBUTE_AUTOSIZE);
458 'enableAutoSize': autosize,
816 'autosize': this.webviewNode.hasAttribute(WEB_VIEW_ATTRIBUTE_AUTOSIZE),

Completed in 567 milliseconds