11 This tests that frame resizing is allowed and disallowed when programmatically removing and adding the noresize attribute, respectively.
13 Test disallow frame resize via noResize IDL attribute:
14 PASS document.getElementById("testFrame").getBoundingClientRect().width is 200
16 Test allow frame resize when noResize IDL attribute has value undefined:
17 PASS document.getElementById("testFrame").getBoundingClientRect().width is 210
19 Test allow frame resize when noResize IDL attribute has value null:
20 PASS document.getElementById("testFrame").getBoundingClientRect().width is 220
22 Test disallow frame resize via noresize content attribute:
23 PASS document.getElementById("testFrame").getBoundingClientRect().width is 220
24 PASS document.getElementById("testFrame").getBoundingClientRect().width is 220
25 PASS document.getElementById("testFrame").getBoundingClientRect().width is 220
26 PASS document.getElementById("testFrame").getBoundingClientRect().width is 220
28 Test disallow then allow frame resize via noResize IDL attribute (i.e. increase frame width by 10 pixels):
29 PASS document.getElementById("testFrame").getBoundingClientRect().width is 220
30 PASS document.getElementById("testFrame").getBoundingClientRect().width is 230
32 Test disallow then allow frame resize via noresize content attribute (i.e. increase frame width by 10 pixels):
33 PASS document.getElementById("testFrame").getBoundingClientRect().width is 230
34 PASS document.getElementById("testFrame").getBoundingClientRect().width is 240