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

Side by Side Diff: Source/WebCore/css/CSSRule.idl

Issue 13839016: Remove CSS_SHADERS compile-time flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 8 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
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 27 matching lines...) Expand all
38 const unsigned short WEBKIT_KEYFRAME_RULE = 8; 38 const unsigned short WEBKIT_KEYFRAME_RULE = 8;
39 #if defined(ENABLE_CSS3_CONDITIONAL_RULES) && ENABLE_CSS3_CONDITIONAL_RULES 39 #if defined(ENABLE_CSS3_CONDITIONAL_RULES) && ENABLE_CSS3_CONDITIONAL_RULES
40 const unsigned short SUPPORTS_RULE = 12; 40 const unsigned short SUPPORTS_RULE = 12;
41 #endif 41 #endif
42 #if defined(ENABLE_CSS_DEVICE_ADAPTATION) && ENABLE_CSS_DEVICE_ADAPTATION 42 #if defined(ENABLE_CSS_DEVICE_ADAPTATION) && ENABLE_CSS_DEVICE_ADAPTATION
43 const unsigned short WEBKIT_VIEWPORT_RULE = 15; 43 const unsigned short WEBKIT_VIEWPORT_RULE = 15;
44 #endif 44 #endif
45 #if defined(ENABLE_CSS_REGIONS) && ENABLE_CSS_REGIONS 45 #if defined(ENABLE_CSS_REGIONS) && ENABLE_CSS_REGIONS
46 const unsigned short WEBKIT_REGION_RULE = 16; 46 const unsigned short WEBKIT_REGION_RULE = 16;
47 #endif 47 #endif
48 #if defined(ENABLE_CSS_SHADERS) && ENABLE_CSS_SHADERS
49 const unsigned short WEBKIT_FILTER_RULE = 17; 48 const unsigned short WEBKIT_FILTER_RULE = 17;
50 #endif
51 #if defined(ENABLE_SHADOW_DOM) && ENABLE_SHADOW_DOM 49 #if defined(ENABLE_SHADOW_DOM) && ENABLE_SHADOW_DOM
52 const unsigned short HOST_RULE = 1001; 50 const unsigned short HOST_RULE = 1001;
53 #endif 51 #endif
54 52
55 readonly attribute unsigned short type; 53 readonly attribute unsigned short type;
56 54
57 [TreatReturnedNullStringAs=Null, TreatNullAs=NullString] attribute DOMString cssText 55 [TreatReturnedNullStringAs=Null, TreatNullAs=NullString] attribute DOMString cssText
58 setter raises (DOMException); 56 setter raises (DOMException);
59 57
60 readonly attribute CSSStyleSheet parentStyleSheet; 58 readonly attribute CSSStyleSheet parentStyleSheet;
61 readonly attribute CSSRule parentRule; 59 readonly attribute CSSRule parentRule;
62 60
63 }; 61 };
64 62
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698