Bug 101264 - document.open should set the outgoing Referer
Summary: document.open should set the outgoing Referer
Status: UNCONFIRMED
Alias: None
Product: WebKit
Classification: Unclassified
Component: DOM (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-11-05 15:01 PST by Brad Vogel
Modified: 2013-04-04 17:02 PDT (History)
4 users (show)

See Also:


Attachments
repro case (447 bytes, text/html)
2012-11-05 15:01 PST, Brad Vogel
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Brad Vogel 2012-11-05 15:01:25 PST
Created attachment 172412 [details]
repro case

Browsers tested:
Chrome Canary 25.0.1317.0 - FAIL
Webkit Nightly 6.0.2 (7536.26.17, 537+) - FAIL
Firefox 16.0.2 - PASS

Repro steps:
1) Run the attached test.html with the web inspector open.
2) Click the Network tab and click icon-gold.png.

Expected:
The HTTP REFERER header is sent when requesting the image.

Actual:
Notice that the HTTP REFERER header isn't sent when requesting the image. This is because the iframe doesn't have a 'src' attribute. However, the iframe is created and written into by the parent page, so it should send the parent page's REFERER.

This breaks sites that need to use a local iframe to sandbox css styles, and that iframe also loads external content that relies on HTTP REFERER.
Comment 1 Adam Barth 2012-11-06 14:57:15 PST
What is a "local" iframe?
Comment 2 Adam Barth 2012-11-06 15:10:46 PST
I thought I checked all these cases and made us match Firefox, but it sounds like I missed this one.  Thanks for the report.
Comment 3 Brad Vogel 2012-11-06 15:28:08 PST
"Local iframe": an empty iframe without the 'src' attribute. E.g.:
<iframe></iframe>
<script>
    var iframe = document.querySelector('iframe');
    iframe.open();
    iframe.write('content');
    iframe.close();
</script>
Comment 4 Matt Wiebe 2012-12-19 09:42:41 PST
I can confirm that IE 9 and 10 also set the HTTP Referer header properly in this use case.

This is a particular problem for anyone using the WordPress Theme Customizer (which uses a src-less, dynamic iframe) in conjunction with any authenticated requests that rely on the Referer (eg Typekit) inside that iframe.
Comment 5 Brad Vogel 2013-04-04 17:02:34 PDT
Cross filed for Blink at https://code.google.com/p/chromium/issues/detail?id=226858