summaryrefslogtreecommitdiffstats
path: root/dom/base/test/test_getAttribute_after_createAttribute.html
blob: 5e2f4ec30698775ecc525a1d51657c56790afca7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<meta charset=utf-8>
<title>Test for ...</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
test(function() {
   var div = document.createElement("div");
   var attr = document.createAttribute("FOO");
   attr.value = "bar";
   div.setAttributeNode(attr);
   assert_equals(div.getAttribute("FOO"), "bar");
}, "getAttribute should be able to get an attribute created via createAttribute");
</script>