OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CssSchema
(Results
1 - 2
of
2
) sorted by null
/external/owasp/sanitizer/src/main/org/owasp/html/
CssSchema.java
44
public final class
CssSchema
{
78
private
CssSchema
(ImmutableMap<String, Property> properties) {
91
public static
CssSchema
withProperties(
100
return new
CssSchema
(propertiesBuilder.build());
109
public static
CssSchema
union(
CssSchema
... cssSchemas) {
112
for (
CssSchema
cssSchema
: cssSchemas) {
113
properties.putAll(
cssSchema
.properties);
115
return new
CssSchema
(ImmutableMap.copyOf(properties))
[
all
...]
/external/owasp/sanitizer/distrib/lib/
owasp-java-html-sanitizer.jar
Completed in 66 milliseconds