ladybird/Userland/Libraries
Aliaksandr Kalenik 38edab09a0 LibWeb: Allow <svg> to act as a containing block
This change makes overflow clipping work correctly for children of svg
element.

Fixes following example:
```html
<!doctype html><style>
    body {
        width: 300px;
        height: 300px;
        position: relative;
        overflow: hidden;
        border: 1px solid black;
    }
    svg {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 100%;
        height: 100%;
        transform: translate(-50%, -50%);
    }
</style>
<body>
<svg viewBox="0 0 100 100">
   <g>
     <rect x="0" y="0" width="100" height="100" fill="green"></rect>
   </g>
</svg>
```
2023-07-28 15:15:07 +02:00
..
LibArchive
LibAudio LibAudio: Use ReadonlyBytes instead of Bytes for buffer parameters 2023-07-20 08:02:12 +01:00
LibC Revert "LibC: Remove duplicate log statement" 2023-07-22 12:19:53 -04:00
LibCards
LibChess
LibCMake
LibCodeComprehension
LibCompress LibCompress/Brotli: Remove CanonicalCode::clear() 2023-07-22 07:10:47 +02:00
LibConfig
LibCore LibCore: Move the Promise::await() result instead of returning a ref 2023-07-24 16:42:15 +03:30
LibCoredump
LibCpp
LibCrypt
LibCrypto LibCrypto: Make create_aligned_buffer() static 2023-07-19 21:26:55 +01:00
LibDebug
LibDesktop
LibDeviceTree
LibDiff Everywhere: Update copyrights with my new serenityos.org e-mail :^) 2023-07-15 16:21:29 +02:00
LibDNS
LibDSP
LibEDID Everywhere: Use nested namespace qualifiers 2023-07-12 10:05:42 +03:30
LibELF
LibFileSystem LibFileSystem: Add FileSystem::is_regular_file 2023-07-13 10:29:30 +01:00
LibFileSystemAccessClient
LibGemini
LibGfx LibGfx/TGA: Simplify the code by converting it to use AK::Stream 2023-07-27 14:40:00 +01:00
LibGL
LibGLSL
LibGPU
LibGUI LibGUI+GMLPlayground: Set correct undo text for ReplaceAllTextCommand 2023-07-26 14:18:20 -04:00
LibHTTP
LibIDL
LibImageDecoderClient
LibIMAP
LibIPC LibIPC: Do not leak the Core::File fd by default 2023-07-12 18:22:18 -04:00
LibJS LibJS/Tests: Set failing bytecode tests as xfail when in bytecode mode 2023-07-23 07:36:13 +02:00
LibKeyboard
LibLine Everywhere: Use nested namespace qualifiers 2023-07-12 10:05:42 +03:30
LibLocale
LibMain
LibManual
LibMarkdown
LibPartition
LibPCIDB
LibPDF LibPDF: Ensure all subpaths are closed before filling paths 2023-07-25 13:42:40 +02:00
LibProtocol
LibRegex LibRegex: Avoid pointlessly slicing a UTF-16 string for one code unit 2023-07-14 11:22:21 +02:00
LibSanitizer
LibSoftGPU
LibSQL
LibSymbolication
LibSyntax
LibSystem
LibTest test-js: Run with the JavaScript bytecode VM by default 2023-07-25 20:00:46 +02:00
LibTextCodec
LibThreading
LibTimeZone
LibTLS LibTLS: Move singleton for DefaultRootCACertificates out of line 2023-07-26 05:34:38 +02:00
LibUnicode LibUnicode: Perform code point case conversion lookups in constant time 2023-07-28 05:28:50 +02:00
LibUSBDB
LibVideo AK: Rename the const overload of FixedMemoryStream::bytes() 2023-07-27 14:40:00 +01:00
LibVirtGPU
LibVT
LibWasm
LibWeb LibWeb: Allow <svg> to act as a containing block 2023-07-28 15:15:07 +02:00
LibWebSocket
LibWebView Browser+LibWebView: Run with the JavaScript bytecode VM by default 2023-07-25 20:00:46 +02:00
LibX86
LibXML LibXML: Actually append resolved references when parsing content 2023-07-23 16:09:12 +02:00
CMakeLists.txt