Home | History | Annotate | Download | only in examples

Lines Matching refs:matching

127           .allowAttributes("id").matching(HTML_ID).globally()
128 .allowAttributes("class").matching(HTML_CLASS).globally()
129 .allowAttributes("lang").matching(Pattern.compile("[a-zA-Z]{2,20}"))
131 .allowAttributes("title").matching(HTML_TITLE).globally()
133 .allowAttributes("align").matching(ALIGN).onElements("p")
134 .allowAttributes("for").matching(HTML_ID).onElements("label")
135 .allowAttributes("color").matching(COLOR_NAME_OR_COLOR_CODE)
138 .matching(Pattern.compile("[\\w;, \\-]+"))
140 .allowAttributes("size").matching(NUMBER).onElements("font")
141 .allowAttributes("href").matching(ONSITE_OR_OFFSITE_URL)
145 .allowAttributes("name").matching(NAME).onElements("a")
148 .matching(HISTORY_BACK).onElements("a")
150 .allowAttributes("src").matching(ONSITE_OR_OFFSITE_URL)
152 .allowAttributes("name").matching(NAME)
154 .allowAttributes("alt").matching(PARAGRAPH)
156 .allowAttributes("border", "hspace", "vspace").matching(NUMBER)
159 .matching(NUMBER).onElements("table")
160 .allowAttributes("bgcolor").matching(COLOR_NAME_OR_COLOR_CODE)
162 .allowAttributes("background").matching(ONSITE_URL)
164 .allowAttributes("align").matching(ALIGN)
166 .allowAttributes("noresize").matching(Pattern.compile("(?i)noresize"))
168 .allowAttributes("background").matching(ONSITE_URL)
170 .allowAttributes("bgcolor").matching(COLOR_NAME_OR_COLOR_CODE)
172 .allowAttributes("abbr").matching(PARAGRAPH)
174 .allowAttributes("axis", "headers").matching(NAME)
177 .matching(Pattern.compile("(?i)(?:row|col)(?:group)?"))
181 .allowAttributes("height", "width").matching(NUMBER_OR_PERCENT)
183 .allowAttributes("align").matching(ALIGN)
186 .allowAttributes("valign").matching(VALIGN)
189 .allowAttributes("charoff").matching(NUMBER_OR_PERCENT)
192 .allowAttributes("char").matching(ONE_CHAR)
195 .allowAttributes("colspan", "rowspan").matching(NUMBER)
197 .allowAttributes("span", "width").matching(NUMBER_OR_PERCENT)