3 <script src=
"../../../resources/js-test.js"></script>
6 <img id=
"image" lowsrc=
"http://hostname/lowsrc.png" style=
"visibility: hidden;">
8 description("This test checks that the lowsrc attribute of img tags are accessible via JavaScript.");
9 var image
= document
.getElementById('image');
10 shouldBe("image.lowsrc", "'http://hostname/lowsrc.png'");
11 image
.lowsrc
= "http://hostname/newlowsrc.png";
12 shouldBe("image.lowsrc", "'http://hostname/newlowsrc.png'");