1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:57:35 +00:00

LibWeb: Implement the dns-prefetch and preconnect link relationships

This commit is contained in:
Ali Mohammad Pur 2021-09-28 00:08:29 +03:30 committed by Andreas Kling
parent e9b9f89e70
commit f0e2c517fc
4 changed files with 26 additions and 3 deletions

View file

@ -33,6 +33,8 @@ private:
Alternate = 1 << 0,
Stylesheet = 1 << 1,
Preload = 1 << 2,
DNSPrefetch = 1 << 3,
Preconnect = 1 << 4,
};
};