Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Clean up
  • Loading branch information
jonathanKingston committed Sep 6, 2025
commit f0d557156548e29cd3f72a84b2e76dfd76f8bbee
3 changes: 0 additions & 3 deletions injected/integration-test/test-pages/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,5 @@
<h1>Integration page</h1>
<p>This loads the injection file as if it were loaded through the content script.</p>
<script src="./build/contentScope.js"></script>
<ul>
<li><a href="./webcompat/">Web compat testing</a></li>
</ul>
</body>
</html>

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -127,12 +127,9 @@
results.push({
name: 'Device properties are read-only',
result: (() => {
try {
devices[0].deviceId = 'modified';
return false;
} catch (e) {
return true;
}
const originalValue = devices[0].deviceId;
devices[0].deviceId = 'modified';
return devices[0].deviceId === originalValue;
})(),
expected: true
});
Expand Down
2 changes: 0 additions & 2 deletions injected/src/features/web-compat.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
// TypeScript is disabled for this file due to intentional DOM polyfills (e.g., Notification) that are incompatible with the DOM lib types.

import ContentFeature from '../content-feature.js';
// eslint-disable-next-line no-redeclare
import { URL } from '../captured-globals.js';
Expand Down