summaryrefslogtreecommitdiffstats
path: root/dom/html/test/test_bug839913.html
blob: 7397fa3b6b03448e9ee565436e1a1d38a531a146 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<meta charset=utf-8>
<title>Test for HTMLAreaElement's stringifier</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
test(function() {
  var area = document.createElement("area");
  area.href = "http://example.org/";
  assert_equals(area.href, "http://example.org/");
  assert_equals(String(area), "http://example.org/");
}, "Area elements should stringify to the href attribute");
</script>