summaryrefslogtreecommitdiff
path: root/test/suite/sputnik/Conformance/15_Native/15.1_The_Global_Object/15.1.3_URI_Handling_Function_Properties/15.1.3.3_encodeURI/S15.1.3.3_A3.3_T1.js
blob: f82f354b12449e5eec203488671522451cb63ead (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
 * @name: S15.1.3.3_A3.3_T1;
 * @section: 15.1.3.3;
 * @assertion: unescapedURISet containing "#";
 * @description: encodeURI("#") === "#";
*/

if (encodeURI("#") !== "#") {
  $ERROR('#1: unescapedURISet containing "#"');
}