Backed out changeset 804b3282f778 (bug 1407026) for failing devtools/client/webconsole/test/browser_console.js on Windows 7 debug without e10s. r=backout

--HG--
extra : amend_source : 969438fbe7623611a02be5d05fa776269bbd7adc
This commit is contained in:
Sebastian Hengst 2017-10-10 19:11:17 +02:00
Родитель 6a80cdfeb9
Коммит 5171c16eb0
3 изменённых файлов: 1 добавлений и 9 удалений

Просмотреть файл

@ -197,8 +197,4 @@ function* testCPOWInspection(hud) {
// Just a sanity check to make sure a valid packet came back
is(prototypeAndProperties.prototype.class, "XBL prototype JSClass",
"Looks like a valid response");
// The CPOW is in the _contentWindow property.
let cpow = prototypeAndProperties.ownProperties._contentWindow.value;
is(cpow.class, "CPOW: Window", "The CPOW grip has the right class.");
}

Просмотреть файл

@ -197,8 +197,4 @@ function* testCPOWInspection(hud) {
// Just a sanity check to make sure a valid packet came back
is(prototypeAndProperties.prototype.class, "XBL prototype JSClass",
"Looks like a valid response");
// The CPOW is in the _contentWindow property.
let cpow = prototypeAndProperties.ownProperties._contentWindow.value;
is(cpow.class, "CPOW: Window", "The CPOW grip has the right class.");
}

Просмотреть файл

@ -83,7 +83,7 @@ ObjectActor.prototype = {
let unwrapped = DevToolsUtils.unwrap(this.obj);
if (!unwrapped) {
if (DevToolsUtils.isCPOW(this.obj)) {
g.class = "CPOW: " + this.obj.class;
g.class = "CPOW: " + g.class;
} else {
g.class = "Inaccessible";
}