Re: [html-tests] Use iframe.srcdoc instead of src with data: URLs (#2429)

Replacing the implementation with:

```
var b = new Blob([decodeURIComponent(uri_encoded_input)], { type: "text/html" });
iframe.src = URL.createObjectURL(b);
```

fixes the one test that failed. @inexorabletash, WDYT about using that instead?

(Thanks, @gsnedders)

View on GitHub: https://github.com/w3c/web-platform-tests/pull/2429#issuecomment-163930501

Received on Friday, 11 December 2015 12:53:51 UTC