PageRenderTime 52ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/tests/Conformance/15_Native_ECMA_Script_Objects/15.1_The_Global_Object/15.1.3_URI_Handling_Function_Properties/15.1.3.4_encodeURIComponent/S15.1.3.4_A4_T3.js

http://sputniktests.googlecode.com/
JavaScript | 29 lines | 12 code | 5 blank | 12 comment | 8 complexity | cd8adca49de436be691ff78d6d220eee MD5 | raw file
Possible License(s): BSD-3-Clause
  1. // Copyright 2009 the Sputnik authors. All rights reserved.
  2. // This code is governed by the BSD license found in the LICENSE file.
  3. /**
  4. * @name: S15.1.3.4_A4_T3;
  5. * @section: 15.1.3.4;
  6. * @assertion: URI tests;
  7. * @description: Checking URL with Line Terminator;
  8. */
  9. //CHECK#1
  10. if ((encodeURIComponent("http://unipro.ru/\nabout") !== "http%3A%2F%2Funipro.ru%2F%0Aabout") && encodeURIComponent("http://unipro.ru/\nabout") !== "http%3A%2F%2Funipro.ru%2F%0aabout") {
  11. $ERROR('#1: http://unipro.ru/\\nabout');
  12. }
  13. //CHECK#2
  14. if ((encodeURIComponent("http://unipro.ru/\vabout") !== "http%3A%2F%2Funipro.ru%2F%0Babout") && encodeURIComponent("http://unipro.ru/\vabout") !== "http%3A%2F%2Funipro.ru%2F%0babout") {
  15. $ERROR('#2: http://unipro.ru/\\vabout');
  16. }
  17. //CHECK#3
  18. if ((encodeURIComponent("http://unipro.ru/\fabout") !== "http%3A%2F%2Funipro.ru%2F%0Cabout") && encodeURIComponent("http://unipro.ru/\fabout") !== "http%3A%2F%2Funipro.ru%2F%0cabout") {
  19. $ERROR('#3: http://unipro.ru/\\fabout');
  20. }
  21. //CHECK#4
  22. if ((encodeURIComponent("http://unipro.ru/\rabout") !== "http%3A%2F%2Funipro.ru%2F%0Dabout") && encodeURIComponent("http://unipro.ru/\rabout") !== "http%3A%2F%2Funipro.ru%2F%0dabout") {
  23. $ERROR('#4: http://unipro.ru/\\rabout');
  24. }