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

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

Issue 136593002: Move onresize from just Window to Window and elements (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: force rebuild Created 6 years, 11 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 | Annotate | Revision Log
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 12 matching lines...) Expand all
23 [Reflect] attribute DOMString cols; 23 [Reflect] attribute DOMString cols;
24 [Reflect] attribute DOMString rows; 24 [Reflect] attribute DOMString rows;
25 25
26 [Conditional=ORIENTATION_EVENTS] attribute EventHandler onorientationchange; 26 [Conditional=ORIENTATION_EVENTS] attribute EventHandler onorientationchange;
27 27
28 // Overrides of GlobalEventHandler attributes 28 // Overrides of GlobalEventHandler attributes
29 attribute EventHandler onblur; 29 attribute EventHandler onblur;
30 attribute EventHandler onerror; 30 attribute EventHandler onerror;
31 attribute EventHandler onfocus; 31 attribute EventHandler onfocus;
32 attribute EventHandler onload; 32 attribute EventHandler onload;
33 attribute EventHandler onresize;
33 attribute EventHandler onscroll; 34 attribute EventHandler onscroll;
34 }; 35 };
35 36
37 // force rebuild: crbug.com/307023
tkent 2014/01/14 03:19:22 This change is unnecessary because you add 'onresi
philipj_slow 2014/01/14 09:43:20 Yes.
36 HTMLFrameSetElement implements WindowEventHandlers; 38 HTMLFrameSetElement implements WindowEventHandlers;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698