Searched refs:boolFeature (Results 1 - 4 of 4) sorted by relevance

/external/webkit/WebCore/page/
H A DWindowFeatures.h58 static bool boolFeature(const HashMap<String, String>& features, const char* key, bool defaultValue = false);
H A DWindowFeatures.cpp160 bool WindowFeatures::boolFeature(const HashMap<String, String>& features, const char* key, bool defaultValue) function in class:WebCore::WindowFeatures
/external/webkit/WebCore/bindings/js/
H A DJSDOMWindowCustom.cpp831 // - dialogHide: trusted && boolFeature(features, "dialoghide"), makes dialog hide when you print
832 // - help: boolFeature(features, "help", true), makes help icon appear in dialog (what does it do on Windows?)
833 // - unadorned: trusted && boolFeature(features, "unadorned");
848 if (WindowFeatures::boolFeature(features, "center", true)) {
860 wargs.resizable = WindowFeatures::boolFeature(features, "resizable");
861 wargs.scrollbarsVisible = WindowFeatures::boolFeature(features, "scroll", true);
862 wargs.statusBarVisible = WindowFeatures::boolFeature(features, "status", !trusted);
/external/webkit/WebCore/bindings/v8/custom/
H A DV8DOMWindowCustom.cpp524 if (WindowFeatures::boolFeature(features, "center", true)) {
536 windowFeatures.resizable = WindowFeatures::boolFeature(features, "resizable");
537 windowFeatures.scrollbarsVisible = WindowFeatures::boolFeature(features, "scroll", true);
538 windowFeatures.statusBarVisible = WindowFeatures::boolFeature(features, "status", !trusted);

Completed in 447 milliseconds