<!DOCTYPE html>
<html>
        <head>
                <title>Test case for HTTPS-Everywhere for embedding</title>
                <style type="text/css">
                        iframe {
                                        width: 100%;
                                        height: 500px;
                        }
                        object {
                                        width: 100%;
                                        height: 500px;
                        }
                        embed {
                                        width: 100%;
                                        height: 500px;
                </style>
        </head>
        <body>
                <p>Embedding Google using HTTP in iframe:</p>
                <iframe src="http://www.google.com/">Google isn't available now for some reason, try again later.</iframe>
                <p>Embedding Google using HTTPS in iframe:</p>
                <iframe src="https://www.google.com/">Google isn't available now for some reason, try again later.</iframe>
                <p>Embedding Google using HTTP in object:</p>
                <object data="http://www.google.com/" type="text/html">Google isn't available now for some reason, try again later.</object>
                <p>Embedding Google using HTTPS in object:</p>
                <object data="https://www.google.com/" type="text/html">Google isn't available now for some reason, try again later.</object>
                <p>Embedding Google using HTTP in embed:</p>
                <embed src="http://www.google.com/" type="text/html">Google isn't available now for some reason, try again later.</embed>
                <p>Embedding Google using HTTPS in embed:</p>
                <embed src="https://www.google.com/" type="text/html">Google isn't available now for some reason, try again later.</embed>
        </body>
</html>