1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/limesurvey_ynh.git synced 2024-09-03 19:36:32 +02:00
limesurvey_ynh/sources/third_party/jquery-cookie/test/malformed_cookie.html

18 lines
424 B
HTML

<!doctype html>
<html>
<head>
<title></title>
<script src="http://code.jquery.com/jquery-1.9.0.min.js"></script>
<script src="../jquery.cookie.js"></script>
<script>
try {
Object.defineProperty(document, "cookie", { get: function() { return "first=one; ; second=two"; } });
window.testValue = $.cookie("second");
window.ok = true;
} catch (er) {
}
</script>
</head>
<body>
</body>
</html>