Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | #include "inISearchProcess.idl" |
michael@0 | 6 | |
michael@0 | 7 | interface nsIDOMDocument; |
michael@0 | 8 | |
michael@0 | 9 | [scriptable, uuid(e0d39e48-1dd1-11b2-81bd-9a0c117f0736)] |
michael@0 | 10 | interface inICSSValueSearch : inISearchProcess { |
michael@0 | 11 | |
michael@0 | 12 | attribute nsIDOMDocument document; |
michael@0 | 13 | |
michael@0 | 14 | // the base url for all returned URL results, if returnRelativeURLs is true |
michael@0 | 15 | attribute wstring baseURL; |
michael@0 | 16 | |
michael@0 | 17 | // strip off the baseURL for all URL results if true |
michael@0 | 18 | attribute boolean returnRelativeURLs; |
michael@0 | 19 | |
michael@0 | 20 | // correct the paths on a chrome url, such as turning global/skin/blah into global/blah |
michael@0 | 21 | attribute boolean normalizeChromeURLs; |
michael@0 | 22 | |
michael@0 | 23 | // add a css property to search for |
michael@0 | 24 | void addPropertyCriteria(in wstring aPropName); |
michael@0 | 25 | |
michael@0 | 26 | // set the text value to search for in the properties specified (optional) |
michael@0 | 27 | attribute wstring textCriteria; |
michael@0 | 28 | |
michael@0 | 29 | }; |