3 <p>Text for <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=10147">bug 10147</a>:
4 REGRESSION: custom attribute values set via javascript are not persistent.</p>
6 <table id="table1" border="0">
7 <tr id="mg" customAttr="old Value">
11 <script language="javascript">
12 if (window.layoutTestController)
13 layoutTestController.dumpAsText();
16 document.getElementById("mg").setAttribute("customAttr", "new value");
18 if ("new value" == document.getElementById("mg").getAttribute("customAttr"))
19 document.write("SUCCESS");
21 document.write("FAILURE");