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

Side by Side Diff: Source/core/css/CSSStyleSheet.idl

Issue 114573002: Add UseCounters for CSSStyleSheet IE extensions (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | « no previous file | Source/core/frame/UseCounter.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, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 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 11 matching lines...) Expand all
22 [ 22 [
23 GenerateVisitDOMWrapper=ownerNode, 23 GenerateVisitDOMWrapper=ownerNode,
24 ] interface CSSStyleSheet : StyleSheet { 24 ] interface CSSStyleSheet : StyleSheet {
25 readonly attribute CSSRule ownerRule; 25 readonly attribute CSSRule ownerRule;
26 readonly attribute CSSRuleList cssRules; 26 readonly attribute CSSRuleList cssRules;
27 27
28 [RaisesException] unsigned long insertRule(DOMString rule, optional unsigned long index); 28 [RaisesException] unsigned long insertRule(DOMString rule, optional unsigned long index);
29 [RaisesException] void deleteRule(unsigned long index); 29 [RaisesException] void deleteRule(unsigned long index);
30 30
31 // IE Extensions 31 // IE Extensions
32 readonly attribute CSSRuleList rules; 32 [MeasureAs=CSSStyleSheetRules] readonly attribute CSSRuleList rules;
33 33
34 [RaisesException] long addRule([Default=Undefined] optional DOMString select or, 34 [RaisesException, MeasureAs=CSSStyleSheetAddRule] long addRule([Default=Unde fined] optional DOMString selector,
35 [Default=Undefined] optional DOMString style, 35 [Default=Unde fined] optional DOMString style,
36 optional unsigned long index); 36 optional unsi gned long index);
37 [RaisesException] void removeRule([Default=Undefined] optional unsigned long index); 37 [RaisesException, MeasureAs=CSSStyleSheetRemoveRule] void removeRule([Defaul t=Undefined] optional unsigned long index);
38 }; 38 };
39
OLDNEW
« no previous file with comments | « no previous file | Source/core/frame/UseCounter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698