Remove browser engine detection

It is out of date and not used anyway.
This commit is contained in:
Pierre Ossman
2017-05-04 14:52:05 +02:00
parent 099eb856cf
commit fb7e99e84b
3 changed files with 1 additions and 75 deletions
+1 -5
View File
@@ -10,7 +10,7 @@
/*jslint browser: true, white: false */
/*global Util, Base64, changeCursor */
import { Engine, browserSupportsCursorURIs as cursorURIsSupported } from './util/browsers.js';
import { browserSupportsCursorURIs as cursorURIsSupported } from './util/browsers.js';
import { set_defaults, make_properties } from './util/properties.js';
import * as Log from './util/logging.js';
import Base64 from "./base64.js";
@@ -70,10 +70,6 @@ export default function Display(defaults) {
bottom: this._backbuffer.height };
Log.Debug("User Agent: " + navigator.userAgent);
if (Engine.gecko) { Log.Debug("Browser: gecko " + Engine.gecko); }
if (Engine.webkit) { Log.Debug("Browser: webkit " + Engine.webkit); }
if (Engine.trident) { Log.Debug("Browser: trident " + Engine.trident); }
if (Engine.presto) { Log.Debug("Browser: presto " + Engine.presto); }
this.clear();