1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17

fuchsia_web / webengine / test / data / cross_origin_include_image.html [blame]

<!DOCTYPE html>
<html>
  <head>
    <title></title>
  </head>
  <body>
    <img src="alternate://1x1.gif" name="picture">
    <script>
      window.onload = function() {
        if (picture.width == 1 && picture.height == 1)
          document.title = "image fetched";
        else
          document.title = "image rejected";
      }
    </script>
  </body>
</html>