summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/dom/nodes/Document-contentType/contentType/contenttype_jpg.html
blob: 13f57ec8b9ed3893e84fab6413bc1f26b1b63db3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<title>JPG document.contentType === 'image/jpeg'</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<script>
async_test(function() {
  var iframe = document.createElement('iframe');
  iframe.addEventListener('load', this.step_func_done(function() {
    assert_equals(iframe.contentDocument.contentType, "image/jpeg");
  }), false);
  iframe.src = "../resources/t.jpg";
  document.body.appendChild(iframe);
});
</script>