Sign in
webkit
/
WebKit
/
a93db0d3fe1c76f7eeb6cf6a8602b63fe8ff9d50
/
.
/
LayoutTests
/
js
/
script-tests
/
regexp-divequal.js
blob: 9e4e71da8a1f0557304eaa030e182b715515de68 [
file
] [
log
] [
blame
]
description
(
'Test JS parser handling of regex literals starting with /='
);
shouldBe
(
"/=/.toString()"
,
"'/=/'"
);
shouldBeFalse
(
"/=/.test('')"
);
shouldBeTrue
(
"/=/.test('=')"
);
shouldBe
(
"'='.match(/=/)"
,
"['=']"
);
shouldBe
(
"'='.match(/\\=/)"
,
"['=']"
);