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

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

Issue 14619018: As discussed in blink-dev mailing list remove getPropertyShorthand and isImplicit from the Web expo… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 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
« no previous file with comments | « LayoutTests/fast/inspector-support/style-expected.txt ('k') | no next file » | 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 21 matching lines...) Expand all
32 CSSValue getPropertyCSSValue([Default=Undefined] optional DOMStrin g propertyName); 32 CSSValue getPropertyCSSValue([Default=Undefined] optional DOMStrin g propertyName);
33 [TreatReturnedNullStringAs=Null, RaisesException] DOMString removeP roperty([Default=Undefined] optional DOMString propertyName); 33 [TreatReturnedNullStringAs=Null, RaisesException] DOMString removeP roperty([Default=Undefined] optional DOMString propertyName);
34 [TreatReturnedNullStringAs=Null] DOMString getPropertyPriority([Def ault=Undefined] optional DOMString propertyName); 34 [TreatReturnedNullStringAs=Null] DOMString getPropertyPriority([Def ault=Undefined] optional DOMString propertyName);
35 [RaisesException] void setProperty([Default=Undefined] optional DOMString p ropertyName, 35 [RaisesException] void setProperty([Default=Undefined] optional DOMString p ropertyName,
36 [TreatNullAs=NullString,Default=Undefined] o ptional DOMString value, 36 [TreatNullAs=NullString,Default=Undefined] o ptional DOMString value,
37 [Default=Undefined] optional DOMString prior ity); 37 [Default=Undefined] optional DOMString prior ity);
38 38
39 readonly attribute unsigned long length; 39 readonly attribute unsigned long length;
40 getter DOMString item([Default=Undefined] optional unsigned long in dex); 40 getter DOMString item([Default=Undefined] optional unsigned long in dex);
41 readonly attribute CSSRule parentRule; 41 readonly attribute CSSRule parentRule;
42
43 // Extensions
44 [TreatReturnedNullStringAs=Null] DOMString getPropertyShorthand([De fault=Undefined] optional DOMString propertyName);
45 boolean isPropertyImplicit([Default=Undefined] optional DOMString propertyName);
46 }; 42 };
47 43
OLDNEW
« no previous file with comments | « LayoutTests/fast/inspector-support/style-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698