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

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

Issue 38943008: Explore the possibility of implementing the CSS Region interface. Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Prototype v2 Created 7 years, 1 month 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
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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 122
123 // Mozilla version 123 // Mozilla version
124 const unsigned short ALLOW_KEYBOARD_INPUT = 1; 124 const unsigned short ALLOW_KEYBOARD_INPUT = 1;
125 [RuntimeEnabled=Fullscreen, PerWorldBindings, ActivityLogging=AccessForAllWo rlds, MeasureAs=PrefixedElementRequestFullScreen] void webkitRequestFullScreen([ Default=Undefined] optional unsigned short flags); 125 [RuntimeEnabled=Fullscreen, PerWorldBindings, ActivityLogging=AccessForAllWo rlds, MeasureAs=PrefixedElementRequestFullScreen] void webkitRequestFullScreen([ Default=Undefined] optional unsigned short flags);
126 126
127 // W3C version 127 // W3C version
128 [RuntimeEnabled=Fullscreen, PerWorldBindings, ActivityLogging=AccessForAllWo rlds, MeasureAs=PrefixedElementRequestFullscreen] void webkitRequestFullscreen() ; 128 [RuntimeEnabled=Fullscreen, PerWorldBindings, ActivityLogging=AccessForAllWo rlds, MeasureAs=PrefixedElementRequestFullscreen] void webkitRequestFullscreen() ;
129 129
130 void webkitRequestPointerLock(); 130 void webkitRequestPointerLock();
131 131
132 // CSS Regions API
133 [RuntimeEnabled=CSSRegions, PerWorldBindings] readonly attribute DOMString w ebkitRegionOverset;
134 [RuntimeEnabled=CSSRegions] sequence<Range> webkitGetRegionFlowRanges();
135
136 // Event handler attributes 132 // Event handler attributes
137 attribute EventHandler onbeforecopy; 133 attribute EventHandler onbeforecopy;
138 attribute EventHandler onbeforecut; 134 attribute EventHandler onbeforecut;
139 attribute EventHandler onbeforepaste; 135 attribute EventHandler onbeforepaste;
140 attribute EventHandler oncopy; 136 attribute EventHandler oncopy;
141 attribute EventHandler oncut; 137 attribute EventHandler oncut;
142 attribute EventHandler onpaste; 138 attribute EventHandler onpaste;
143 attribute EventHandler onsearch; 139 attribute EventHandler onsearch;
144 attribute EventHandler onselectstart; 140 attribute EventHandler onselectstart;
145 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; 141 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel;
146 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; 142 [RuntimeEnabled=Touch] attribute EventHandler ontouchend;
147 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; 143 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove;
148 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; 144 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart;
149 attribute EventHandler onwebkitfullscreenchange; 145 attribute EventHandler onwebkitfullscreenchange;
150 attribute EventHandler onwebkitfullscreenerror; 146 attribute EventHandler onwebkitfullscreenerror;
151 [ActivityLogging=SetterForAllWorlds] attribute EventHandler onwheel; 147 [ActivityLogging=SetterForAllWorlds] attribute EventHandler onwheel;
152 }; 148 };
153 149
154 Element implements ParentNode; 150 Element implements ParentNode;
155 Element implements ChildNode; 151 Element implements ChildNode;
152 Element implements CSSRegion;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698