mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
e5be7ca582
--HG-- extra : rebase_source : e8f794ff0e474d669489eff7e82b3b0eccf4db0e
24 lines
454 B
HTML
24 lines
454 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
"use strict";
|
|
|
|
function showNotification() {
|
|
var options = {
|
|
dir: undefined,
|
|
lang: undefined,
|
|
body: "Test body",
|
|
tag: "Test tag",
|
|
icon: undefined,
|
|
};
|
|
return new Notification("Test title", options);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<form id="notificationForm" onsubmit="showNotification();">
|
|
<input type="submit" value="Show notification" id="submit"/>
|
|
</form>
|
|
</body>
|
|
</html>
|