summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/embedded-content/the-area-element/area-stringifier.html
blob: 3a661893d7af8cee7a30811cba41aec4f95aa627 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<title>HTMLAreaElement stringifier</title>
<link rel="author" title="Ms2ger" href="mailto:ms2ger@gmail.com">
<link rel="help" href="https://webidl.spec.whatwg.org/#es-stringifier">
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src=/common/stringifiers.js></script>
<div id=log></div>
<script>
test(function() {
  test_stringifier_attribute(document.createElement("area"), "href", false);
  var area = document.createElement("area");
  area.setAttribute("href", "foo");
  test_stringifier_attribute(area, "href", false);
})
</script>