blob: 5cb32d55c52cb407ca675261da933d8f16c9f9f5 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../../../resources/js-test.js"></script>
</head>
<body>
<p id="description"></p>
<div id="console"></div>
<script>
description('Test that we can set and get custom properties on the labels attribute. ');
var parentDiv = document.createElement('div');
parentDiv.innerHTML = '<button id="btn"></button><label id="lbl1" for="btn"></label><label id="lbl2" for="btn"></label>';
document.body.appendChild(parentDiv);
labels = document.getElementById("btn").labels;
labels.customProperty = 1;
gc();
shouldBe('labels.customProperty', '1');
shouldBe('document.getElementById("btn").labels.customProperty', '1');
</script>
</body>
</html>