mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
This patch: - teaches request interception to ignore data URLs. Currently protocol doesn't send interceptions for data URLs. - teaches request interception to properly process URLs with hashes. Currently `Network.requestIntercepted` sends url with a hash, whereas `Network.requestWillBeSent` doesn't report hashes in its urls. @see crbug.com/755456 - skips one more header that I spotted during debugging interception on the realworld websites. Fixes #258, #259.