mirror of
https://github.com/servo/servo.git
synced 2025-09-13 08:28:19 +01:00
Update web-platform-tests to revision 1abcb7058ecdaabd5fe9c27c90a73795d31d2a0a
This commit is contained in:
parent
5bdea7dc1c
commit
c930649cd6
53 changed files with 413 additions and 851 deletions
|
@ -577,7 +577,10 @@ class MultiDict(dict):
|
|||
|
||||
:param key: The key to lookup
|
||||
"""
|
||||
return dict.__getitem__(self, key)
|
||||
if key in self:
|
||||
return dict.__getitem__(self, key)
|
||||
else:
|
||||
return []
|
||||
|
||||
@classmethod
|
||||
def from_field_storage(cls, fs):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue