Implement iterable for Headers.

This commit implements iterable in DOM Headers based on iterable
implementation from #12819. Expected wpt results are updated as well.
This commit is contained in:
Jeena Lee 2016-08-24 12:57:54 -07:00
parent 1370fa5e3b
commit e3624edbf6
4 changed files with 39 additions and 18 deletions

View file

@ -20,5 +20,5 @@ interface Headers {
boolean has(ByteString name);
[Throws]
void set(ByteString name, ByteString value);
// iterable<ByteString, ByteString>; // TODO see issue #12628
iterable<ByteString, ByteString>;
};