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

Side by Side Diff: Source/core/dom/Element.idl

Issue 134473008: Remove CSS regions support, keeping a bare minimum to support "region-based" multicol. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase master Created 6 years, 10 months 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
« no previous file with comments | « Source/core/dom/Element.cpp ('k') | Source/core/dom/ElementRareData.h » ('j') | 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, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 125
126 // Mozilla version 126 // Mozilla version
127 const unsigned short ALLOW_KEYBOARD_INPUT = 1; 127 const unsigned short ALLOW_KEYBOARD_INPUT = 1;
128 [RuntimeEnabled=Fullscreen, PerWorldBindings, ActivityLogging=ForAllWorlds, MeasureAs=PrefixedElementRequestFullScreen] void webkitRequestFullScreen([Defaul t=Undefined] optional unsigned short flags); 128 [RuntimeEnabled=Fullscreen, PerWorldBindings, ActivityLogging=ForAllWorlds, MeasureAs=PrefixedElementRequestFullScreen] void webkitRequestFullScreen([Defaul t=Undefined] optional unsigned short flags);
129 129
130 // W3C version 130 // W3C version
131 [RuntimeEnabled=Fullscreen, PerWorldBindings, ActivityLogging=ForAllWorlds, MeasureAs=PrefixedElementRequestFullscreen] void webkitRequestFullscreen(); 131 [RuntimeEnabled=Fullscreen, PerWorldBindings, ActivityLogging=ForAllWorlds, MeasureAs=PrefixedElementRequestFullscreen] void webkitRequestFullscreen();
132 132
133 void webkitRequestPointerLock(); 133 void webkitRequestPointerLock();
134 134
135 // CSS Regions API
136 [RuntimeEnabled=CSSRegions, PerWorldBindings] readonly attribute DOMString w ebkitRegionOverset;
137 [RuntimeEnabled=CSSRegions] sequence<Range> webkitGetRegionFlowRanges();
138
139 // Event handler attributes 135 // Event handler attributes
140 attribute EventHandler onbeforecopy; 136 attribute EventHandler onbeforecopy;
141 attribute EventHandler onbeforecut; 137 attribute EventHandler onbeforecut;
142 attribute EventHandler onbeforepaste; 138 attribute EventHandler onbeforepaste;
143 attribute EventHandler oncopy; 139 attribute EventHandler oncopy;
144 attribute EventHandler oncut; 140 attribute EventHandler oncut;
145 attribute EventHandler onpaste; 141 attribute EventHandler onpaste;
146 attribute EventHandler onsearch; 142 attribute EventHandler onsearch;
147 attribute EventHandler onselectstart; 143 attribute EventHandler onselectstart;
148 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; 144 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel;
149 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; 145 [RuntimeEnabled=Touch] attribute EventHandler ontouchend;
150 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; 146 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove;
151 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; 147 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart;
152 attribute EventHandler onwebkitfullscreenchange; 148 attribute EventHandler onwebkitfullscreenchange;
153 attribute EventHandler onwebkitfullscreenerror; 149 attribute EventHandler onwebkitfullscreenerror;
154 [PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventH andler onwheel; 150 [PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventH andler onwheel;
155 }; 151 };
156 152
157 Element implements ParentNode; 153 Element implements ParentNode;
158 Element implements ChildNode; 154 Element implements ChildNode;
OLDNEW
« no previous file with comments | « Source/core/dom/Element.cpp ('k') | Source/core/dom/ElementRareData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698