repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge Chromium + Blink git repositories
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
fast
/
js
/
mozilla
/
strict
/
script-tests
/
strict-this-is-not-truthy.js
blob
de4479db54c55a93b459e98923acf647cd6751f6
1
// Any copyright is dedicated to the Public Domain.
2
// http://creativecommons.org/licenses/publicdomain/
3
4
// See bug 630543.
5
6
function
f
() {
7
"use strict"
;
8
return
!
this
;
9
}
10
assertEq
(
f
.
call
(
null
),
true
);
11
12
reportCompare
(
0
,
0
,
'ok'
);
13
14
var
successfullyParsed
=
true
;