summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/encodeURI/S15.1.3.3_A3.3_T1.js
blob: efa80f884353f40ab923fd7065463a8380d8674d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: unescapedURISet containing "#"
esid: sec-encodeuri-uri
description: encodeURI("#") === "#"
---*/

if (encodeURI("#") !== "#") {
  throw new Test262Error('#1: unescapedURISet containing "#"');
}

reportCompare(0, 0);