michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #include "inISearchProcess.idl" michael@0: michael@0: interface nsIDOMDocument; michael@0: michael@0: [scriptable, uuid(e0d39e48-1dd1-11b2-81bd-9a0c117f0736)] michael@0: interface inICSSValueSearch : inISearchProcess { michael@0: michael@0: attribute nsIDOMDocument document; michael@0: michael@0: // the base url for all returned URL results, if returnRelativeURLs is true michael@0: attribute wstring baseURL; michael@0: michael@0: // strip off the baseURL for all URL results if true michael@0: attribute boolean returnRelativeURLs; michael@0: michael@0: // correct the paths on a chrome url, such as turning global/skin/blah into global/blah michael@0: attribute boolean normalizeChromeURLs; michael@0: michael@0: // add a css property to search for michael@0: void addPropertyCriteria(in wstring aPropName); michael@0: michael@0: // set the text value to search for in the properties specified (optional) michael@0: attribute wstring textCriteria; michael@0: michael@0: };