View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0005454 | SOGo | Documentation | public | 2022-01-07 09:29 | 2022-01-11 15:14 |
| Reporter | abma | Assigned To | francis | ||
| Priority | normal | Severity | minor | Reproducibility | have not tried |
| Status | resolved | Resolution | fixed | ||
| Summary | 0005454: bug tracker security | ||||
| Description | <script> | ||||
| Steps To Reproduce | <script> | ||||
| Additional Information | <script> | ||||
| Tags | No tags attached. | ||||
|
side node: content-security-policy blocks the code, so its just useless. but it example.html (513 bytes)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
#anim {
width: 0px;
height: 0px;
}
#whitespace {
height: 120vh;
}
</style>
<script>
var globalID;
var obj;
function repeatOften() {
obj.innerHTML = ".";
globalID = requestAnimationFrame(repeatOften);
}
function startanim() {
obj = document.getElementById("anim");
globalID = requestAnimationFrame(repeatOften);
}
</script>
</head>
<body onload="startanim();">
<div id="whitespace">
</div>
<div id="anim">
</div>
</body>
</html>
|
|
| Date Modified | Username | Field | Change |
|---|---|---|---|
| 2022-01-07 09:29 | abma | New Issue | |
| 2022-01-07 14:17 | abma | Note Added: 0015732 | |
| 2022-01-07 14:17 | abma | File Added: example.html | |
| 2022-01-10 18:32 | francis | View Status | private => public |
| 2022-01-11 15:14 | francis | Assigned To | => francis |
| 2022-01-11 15:14 | francis | Status | new => resolved |
| 2022-01-11 15:14 | francis | Resolution | open => fixed |