HomeSort by relevance Sort by last modified time
    Searched refs:CSS (Results 1 - 25 of 99) sorted by null

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSS.idl 33 ] interface CSS {
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorCSSAgent.h 28 #include "core/css/CSSSelector.h"
127 virtual void getComputedStyleForNode(ErrorString*, int nodeId, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::CSSComputedStyleProperty> >&);
128 virtual void getInlineStylesForNode(ErrorString*, int nodeId, RefPtr<TypeBuilder::CSS::CSSStyle>& inlineStyle, RefPtr<TypeBuilder::CSS::CSSStyle>& attributes);
129 virtual void getMatchedStylesForNode(ErrorString*, int nodeId, const bool* includePseudo, const bool* includeInherited, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::RuleMatch> >& matchedCSSRules, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::PseudoIdMatches> >& pseudoIdMatches, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::InheritedStyleEntry> >& inheritedEntries);
130 virtual void getAllStyleSheets(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::CSSStyleSheetHeader> >& styleSheetInfos);
131 virtual void getStyleSheet(ErrorString*, const String& styleSheetId, RefPtr<TypeBuilder::CSS::CSSStyleSheetBody>& result);
134 virtual void setStyleText(ErrorString*, const RefPtr<JSONObject>& styleId, const String& text, RefPtr<TypeBuilder::CSS::CSSStyle>& result)
    [all...]
InspectorStyleSheet.h 29 #include "core/css/CSSPropertySourceData.h"
30 #include "core/css/CSSStyleDeclaration.h"
84 // ID type is either TypeBuilder::CSS::CSSStyleId or TypeBuilder::CSS::CSSRuleId.
137 PassRefPtr<TypeBuilder::CSS::CSSStyle> buildObjectForStyle() const;
138 PassRefPtr<TypeBuilder::Array<TypeBuilder::CSS::CSSComputedStyleProperty> > buildArrayForComputedStyle() const;
147 PassRefPtr<TypeBuilder::CSS::CSSStyle> styleWithProperties() const;
175 static PassRefPtr<InspectorStyleSheet> create(InspectorPageAgent*, const String& id, PassRefPtr<CSSStyleSheet> pageStyleSheet, TypeBuilder::CSS::StyleSheetOrigin::Enum, const String& documentURL, Listener*);
183 bool canBind() const { return m_origin != TypeBuilder::CSS::StyleSheetOrigin::User_agent && m_origin != TypeBuilder::CSS::StyleSheetOrigin::User;
    [all...]
InspectorCSSAgent.cpp 33 #include "core/css/CSSComputedStyleDeclaration.h"
34 #include "core/css/CSSImportRule.h"
35 #include "core/css/CSSMediaRule.h"
36 #include "core/css/CSSParser.h"
37 #include "core/css/CSSRule.h"
38 #include "core/css/CSSRuleList.h"
39 #include "core/css/CSSStyleRule.h"
40 #include "core/css/CSSStyleSheet.h"
41 #include "core/css/MediaList.h"
42 #include "core/css/StylePropertySet.h
    [all...]
InspectorStyleSheet.cpp 33 #include "core/css/CSSHostRule.h"
34 #include "core/css/CSSKeyframesRule.h"
35 #include "core/css/CSSMediaRule.h"
36 #include "core/css/CSSParser.h"
37 #include "core/css/CSSPropertySourceData.h"
38 #include "core/css/CSSRule.h"
39 #include "core/css/CSSRuleList.h"
40 #include "core/css/CSSStyleRule.h"
41 #include "core/css/CSSStyleSheet.h"
42 #include "core/css/CSSSupportsRule.h
    [all...]
InspectorInstrumentation.idl 91 [CSS, Inline=FastReturn]
97 [CSS, Inline=FastReturn]
106 [CSS, Inline=FastReturn]
109 [CSS, Inline=FastReturn]
112 [CSS, Inline=FastReturn]
115 [CSS, Inline=FastReturn]
318 [Canvas, Page, CSS]
324 [Console, Resource, CSS, Database, DOM, LayerTree, Inspector, Canvas, Page]
465 [CSS, Inline=FastReturn]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/storage/stylizr/
popup.js 5 // Store CSS data in the "local" storage area.
12 // Check if there is CSS specified.
13 storage.get('css', function(items) {
15 // If there is CSS specified, inject it into the page.
16 if (items.css) {
17 chrome.tabs.insertCSS({code: items.css}, function() {
19 message.innerText = 'Not allowed to inject CSS into special page.';
options.js 5 // Store CSS data in the "local" storage area.
12 // bandwidth) so data that may be as large and updated as frequently as the CSS
21 // Load any CSS that may have previously been saved.
28 // Get the current CSS snippet from the form.
32 message('Error: No CSS specified');
36 storage.set({'css': cssCode}, function() {
43 storage.get('css', function(items) {
44 // To avoid checking items.css we could specify storage.get({css: ''}) to
45 // return a default value of '' if there is no css value yet
    [all...]
  /external/ceres-solver/scripts/
make_docs.py 65 "HTML-CSS": {
  /external/chromium_org/chrome/browser/extensions/
script_executor.h 43 CSS,
  /external/jsilver/src/com/google/streamhtmlparser/
HtmlParser.java 37 * <li>{@code CSS} for Cascading Style-Sheets templates.
54 CSS,
86 * {@code STATE_CSS_FILE} the parser is inside CSS code.
140 * a CSS context. A CSS context is one of the below:
144 * <li>Inside a CSS file when the parser was reset in the CSS mode.
147 * @return {@code true} if and only if the parser is inside CSS
  /external/chromium_org/chrome/browser/resources/local_ntp/
instant_iframe_validation.js 14 * @return {?string} A CSS representation of the color or null if invalid.
42 * @return {?string} CSS color in RGBA format or null if invalid.
  /external/chromium_org/chrome_frame/cfinstall/src/stub/
inlinedelegate.js 30 * Indicates whether the overlay CSS has already been injected.
37 * Generates the CSS for the overlay.
overlaydelegate.js 26 * Indicates whether the overlay CSS has already been injected.
33 * Generates the CSS for the overlay.
  /external/chromium_org/third_party/WebKit/Source/core/loader/
TextResourceDecoder.h 73 enum ContentType { PlainText, HTML, XML, CSS }; // PlainText only checks for BOM.
TextResourceDecoder.cpp 309 if (equalIgnoringCase(mimeType, "text/css"))
310 return CSS;
613 if (m_contentType == CSS && !m_checkedForCSSCharset)
667 && ((!m_checkedForXMLCharset && (m_contentType == HTML || m_contentType == XML)) || (!m_checkedForCSSCharset && (m_contentType == CSS)))) {
  /external/chromium/chrome/browser/resources/shared/js/
util.js 43 * Generates a CSS url string.
44 * @param {string} s The URL to generate the CSS url for.
45 * @return {string} The CSS url string.
63 * @param {string} s The URL to generate the CSS url for.
  /external/chromium_org/chrome/browser/resources/file_manager/js/
tree.css.js 8 * Custom version of chrome://resources/css/tree.css.js, adding support for
31 * @param {string} name CSS canvas identifier.
  /external/chromium_org/chrome/browser/resources/task_manager/
defines.js 40 * Height of each tasks. It is 20px, which is also defined in CSS.
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/js/
util.js 40 * Generates a CSS url string.
41 * @param {string} s The URL to generate the CSS url for.
42 * @return {string} The CSS url string.
60 * @param {string} s The URL to generate the CSS url for.
  /external/chromium_org/ui/webui/resources/js/
util.js 59 * Generates a CSS url string.
60 * @param {string} s The URL to generate the CSS url for.
61 * @return {string} The CSS url string.
78 * Generates a CSS -webkit-image-set for a chrome:// url.
84 * @return {string} The CSS -webkit-image-set.
109 * @param {string} location The URL to generate the CSS url for.
262 * Creates a CSS -webkit-image-set for a favicon request.
  /external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/js/
util.js 41 * Generates a CSS url string.
42 * @param {string} s The URL to generate the CSS url for.
43 * @return {string} The CSS url string.
61 * @param {string} location The URL to generate the CSS url for.
  /external/chromium_org/tools/grit/grit/format/
html_inline_unittest.py 32 <link rel="stylesheet" href="test.css">
34 href="really-long-long-long-long-long-test.css">
56 'test.css': '''
62 'really-long-long-long-long-long-test.css': '''
101 '''Tests that @import directives in inlined CSS files are inlined too.
108 <link rel="stylesheet" href="css/test.css">
113 'css/test.css': '''
114 @import url('test2.css');
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/
execute_code_function.cc 31 // Check if the file is CSS and needs localization.
98 script_type = ScriptExecutor::CSS;
  /external/chromium_org/chrome/browser/resources/file_manager/js/image_editor/
image_buffer.js 60 * @return {string} A value for style.cursor CSS property.
148 * @return {?string} A value for style.cursor CSS property or null for

Completed in 2647 milliseconds

1 2 3 4