use of com.gargoylesoftware.htmlunit.javascript.host.performance.Performance in project htmlunit by HtmlUnit.
the class HTMLCollectionFrames method getPerformance.
/**
* Returns the {@code performance} property.
* @return the {@code performance} property
*/
@JsxGetter
public Performance getPerformance() {
final Performance performance = new Performance();
performance.setParentScope(this);
performance.setPrototype(getPrototype(performance.getClass()));
return performance;
}
Aggregations