Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(372)

Side by Side Diff: Source/core/frame/Window.idl

Issue 777453003: Make Window.offscreenBuffering non-enumerable (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: update expectations Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « LayoutTests/fast/dom/Window/property-access-on-cached-window-after-frame-removed-expected.txt ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2011 Google Inc. All rights reserved. 3 * Copyright (C) 2011 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 optional DOMString defaultValue = ""); 73 optional DOMString defaultValue = "");
74 74
75 boolean find([Default=Undefined] optional DOMString string, 75 boolean find([Default=Undefined] optional DOMString string,
76 [Default=Undefined] optional boolean caseSensitive, 76 [Default=Undefined] optional boolean caseSensitive,
77 [Default=Undefined] optional boolean backwards, 77 [Default=Undefined] optional boolean backwards,
78 [Default=Undefined] optional boolean wrap, 78 [Default=Undefined] optional boolean wrap,
79 [Default=Undefined] optional boolean wholeWord, 79 [Default=Undefined] optional boolean wholeWord,
80 [Default=Undefined] optional boolean searchInFrames, 80 [Default=Undefined] optional boolean searchInFrames,
81 [Default=Undefined] optional boolean showDialog); 81 [Default=Undefined] optional boolean showDialog);
82 82
83 [Replaceable, MeasureAs=WindowOffscreenBuffering] readonly attribute boolean offscreenBuffering; 83 [Replaceable, MeasureAs=WindowOffscreenBuffering, NotEnumerable] readonly at tribute boolean offscreenBuffering;
84 84
85 [Replaceable] readonly attribute long outerHeight; 85 [Replaceable] readonly attribute long outerHeight;
86 [Replaceable] readonly attribute long outerWidth; 86 [Replaceable] readonly attribute long outerWidth;
87 [Replaceable] readonly attribute long innerHeight; 87 [Replaceable] readonly attribute long innerHeight;
88 [Replaceable] readonly attribute long innerWidth; 88 [Replaceable] readonly attribute long innerWidth;
89 [Replaceable] readonly attribute long screenX; 89 [Replaceable] readonly attribute long screenX;
90 [Replaceable] readonly attribute long screenY; 90 [Replaceable] readonly attribute long screenY;
91 [Replaceable] readonly attribute long screenLeft; 91 [Replaceable] readonly attribute long screenLeft;
92 [Replaceable] readonly attribute long screenTop; 92 [Replaceable] readonly attribute long screenTop;
93 [Replaceable] readonly attribute double scrollX; 93 [Replaceable] readonly attribute double scrollX;
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 // FIXME: make this typedef accurate once enough of http://crbug.com/240176 216 // FIXME: make this typedef accurate once enough of http://crbug.com/240176
217 // is in place. 217 // is in place.
218 // FIXME: consider putting this typedef in an .idl file containing spec-wide 218 // FIXME: consider putting this typedef in an .idl file containing spec-wide
219 // utility type definitions. 219 // utility type definitions.
220 typedef MessagePort Transferable; 220 typedef MessagePort Transferable;
221 221
222 Window implements GlobalEventHandlers; 222 Window implements GlobalEventHandlers;
223 Window implements WindowBase64; 223 Window implements WindowBase64;
224 Window implements WindowEventHandlers; 224 Window implements WindowEventHandlers;
225 Window implements WindowTimers; 225 Window implements WindowTimers;
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/Window/property-access-on-cached-window-after-frame-removed-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698