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

Side by Side Diff: Source/core/html/HTMLFrameSetElement.idl

Issue 37263002: Unify the GlobalEventHandlers list on the C++ side (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: one list to rule the C++ side 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, 2010 Apple Inc. All rights reserve 2 * Copyright (C) 2006, 2007, 2009, 2010 Apple Inc. All rights reserve
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 18 matching lines...) Expand all
29 attribute EventHandler onmessage; 29 attribute EventHandler onmessage;
30 attribute EventHandler onoffline; 30 attribute EventHandler onoffline;
31 attribute EventHandler ononline; 31 attribute EventHandler ononline;
32 attribute EventHandler onpopstate; 32 attribute EventHandler onpopstate;
33 attribute EventHandler onresize; 33 attribute EventHandler onresize;
34 attribute EventHandler onstorage; 34 attribute EventHandler onstorage;
35 attribute EventHandler onunload; 35 attribute EventHandler onunload;
36 36
37 [Conditional=ORIENTATION_EVENTS] attribute EventHandler onorientationchange; 37 [Conditional=ORIENTATION_EVENTS] attribute EventHandler onorientationchange;
38 38
39 // Overrides of Element attributes (with different implementation in binding s). 39 // Overrides of GlobalEventHandler attributes
40 attribute EventHandler onblur; 40 attribute EventHandler onblur;
41 attribute EventHandler onerror; 41 attribute EventHandler onerror;
42 attribute EventHandler onfocus; 42 attribute EventHandler onfocus;
43 attribute EventHandler onload; 43 attribute EventHandler onload;
44 attribute EventHandler onscroll;
44 45
45 // Not implemented yet. 46 // Not implemented yet.
46 // attribute EventHandler onafterprint; 47 // attribute EventHandler onafterprint;
47 // attribute EventHandler onbeforeprint; 48 // attribute EventHandler onbeforeprint;
48 // attribute EventHandler onredo; 49 // attribute EventHandler onredo;
49 // attribute EventHandler onundo; 50 // attribute EventHandler onundo;
50 }; 51 };
51 52
OLDNEW
« Source/core/events/EventTarget.h ('K') | « Source/core/html/HTMLFrameSetElement.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698