gecko-dev/devtools/client/jsonview/test/browser_jsonview_nul.js
Oriol Brufau cac2f457e4 Bug 1417035 - Stop using <plaintext> in JSON Viewer r=Honza
MozReview-Commit-ID: ADGZiyMTaAL

--HG--
extra : rebase_source : 06c95da34e6ffa0b23291be30aed2d5463e6f62c
2017-11-14 01:34:21 +01:00

19 lines
577 B
JavaScript

/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim: set ts=2 et sw=2 tw=80: */
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
add_task(function* () {
info("Test JSON with NUL started.");
const TEST_JSON_URL = "data:application/json,\"foo_%00_bar\"";
yield addJsonViewTab(TEST_JSON_URL);
yield selectJsonViewContentTab("rawdata");
let rawData = yield getElementText(".textPanelBox .data");
is(rawData, "\"foo_\u0000_bar\"",
"The NUL character has been preserved.");
});