- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / docs / examples / api / preferences / enableReferrer / popup.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4   <link href="popup.css" rel="stylesheet" type="text/css">
5   <script src="popup.js"></script>
6 </head>
7 <body>
8
9 <div id="container">
10   <input type="checkbox" id="regularValue" />
11   Enable referrers
12   <div id="incognito">
13     <input type="checkbox" id="useSeparateIncognitoSettings" />
14     Use separate setting for incognito mode:
15     <br>
16     <input type="checkbox" id="incognitoValue" disabled="disabled"/>
17     Enable referrers in incognito sessions
18   </div>
19   <div id="incognito-forbidden">
20     Select "Allow in incognito" to access incognito preferences
21   </div>
22 </div>
23
24 </body>
25 </html>