summaryrefslogtreecommitdiff
path: root/toolkit/devtools/inspector/test/browser_inspector_inspect-object-element.js
blob: daec36a234b7f9a36ea00b962d17f4d82a22a1d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* vim: set ft=javascript ts=2 et sw=2 tw=80: */
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";

// A regression test for bug 665880 to make sure elements inside <object> can
// be inspected without exceptions.

const TEST_URI = "data:text/html;charset=utf-8," +
  "<object><p>browser_inspector_inspect-object-element.js</p></object>";

add_task(function* () {
  let { inspector } = yield openInspectorForURL(TEST_URI);
  let objectNode = getNode("object");
  ok(objectNode, "We have the object node");

  yield selectNode("object", inspector);
});