OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Placard
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Placard.js
32
WebInspector.
Placard
= function(title, subtitle)
34
this.element = document.createElementWithClass("div", "
placard
");
35
this.element.
placard
= this;
45
WebInspector.
Placard
.prototype = {
CallStackSidebarPane.js
59
/** @type {!Array.<!WebInspector.CallStackSidebarPane.
Placard
>} */
72
var asyncPlacard = new WebInspector.
Placard
(title, "");
81
* @param {!WebInspector.
Placard
=} asyncPlacard
86
var
placard
= new WebInspector.CallStackSidebarPane.
Placard
(callFrames[i], asyncPlacard);
87
placard
.element.addEventListener("click", this._placardSelected.bind(this,
placard
), false);
88
placard
.element.addEventListener("contextmenu", this._placardContextMenu.bind(this,
placard
), true);
90
asyncPlacard.element.addEventListener("click", this._placardSelected.bind(this,
placard
), false)
[
all
...]
Completed in 85 milliseconds