aboutsummaryrefslogtreecommitdiffstats
path: root/tests/reproducers/simple/JSObjectWithoutToString/resources/JSObjectWithoutToString.js
blob: 47d7d9782ddbd22005e43b30d3a360d4c8dc77cb (plain)
1
2
3
4
5
6
7
8
function doToStringTest(){
    var applet = document.getElementById('jswithouttostring');

    var null_obj = Object.create(null);

    applet.callJSToString(null_obj);
}