Update web-platform-tests to revision 1abcb7058ecdaabd5fe9c27c90a73795d31d2a0a

This commit is contained in:
WPT Sync Bot 2018-12-03 20:36:55 -05:00
parent 5bdea7dc1c
commit c930649cd6
53 changed files with 413 additions and 851 deletions

View file

@ -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):