Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitc4a85fc

Browse files
authored
Merge pull request#377 from hugovk/upper-hex-in-css-colour
Allow uppercase hex chararcters in CSS colour check
2 parentsd595d0a +a5a1900 commitc4a85fc

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

‎.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,3 +80,6 @@ target/
8080

8181
# Generated by parse.py -p
8282
stats.prof
83+
84+
# IDE
85+
.idea

‎html5lib/filters/sanitizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -855,7 +855,7 @@ def sanitize_css(self, style):
855855
'padding']:
856856
forkeywordinvalue.split():
857857
ifkeywordnotinself.allowed_css_keywordsand \
858-
notre.match(r"^(#[0-9a-f]+|rgb\(\d+%?,\d*%?,?\d*%?\)?|\d{0,2}\.?\d{0,2}(cm|em|ex|in|mm|pc|pt|px|%|,|\))?)$",keyword):# noqa
858+
notre.match(r"^(#[0-9a-fA-F]+|rgb\(\d+%?,\d*%?,?\d*%?\)?|\d{0,2}\.?\d{0,2}(cm|em|ex|in|mm|pc|pt|px|%|,|\))?)$",keyword):# noqa
859859
break
860860
else:
861861
clean.append(prop+': '+value+';')

‎html5lib/tests/test_sanitizer.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,3 +113,15 @@ def test_sanitizer():
113113
yield (runSanitizerTest,"test_should_allow_uppercase_%s_uris"%protocol,
114114
"<img src=\"%s:%s\">foo</a>"% (protocol,rest_of_uri),
115115
"""<img src="%s:%s">foo</a>"""% (protocol,rest_of_uri))
116+
117+
118+
deftest_lowercase_color_codes_in_style():
119+
sanitized=sanitize_html("<p style=\"border: 1px solid #a2a2a2;\"></p>")
120+
expected='<p style=\"border: 1px solid #a2a2a2;\"></p>'
121+
assertexpected==sanitized
122+
123+
124+
deftest_uppercase_color_codes_in_style():
125+
sanitized=sanitize_html("<p style=\"border: 1px solid #A2A2A2;\"></p>")
126+
expected='<p style=\"border: 1px solid #A2A2A2;\"></p>'
127+
assertexpected==sanitized

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp