mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
437 B
HTML
19 lines
437 B
HTML
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>Add MozSearch Plugin</title>
|
|
|
|
<script>
|
|
function add() {
|
|
var engine_url = window.document.location.href.replace(".html", ".xml")
|
|
window.external.AddSearchProvider(engine_url);
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
Click <a href="#" name="add" onclick="add();">here</a> to add the Mozilla
|
|
Test MozSearch plugin.
|
|
</body>
|
|
</html>
|