summaryrefslogtreecommitdiff
path: root/Libraries
AgeCommit message (Expand)Author
2020-06-20LibJS: Make Interpreter::construct() take a GlobalObject&Andreas Kling
2020-06-20LibJS: Object::initialize() overrides must always call base classAndreas Kling
2020-06-20LibWeb: Give the DOM Window object a (weak) pointer to its JS wrapperAndreas Kling
2020-06-20LibWeb: JS wrappers need to call base class initialize()Andreas Kling
2020-06-20LibJS: NativeProperty get/put should take a GlobalObject&Andreas Kling
2020-06-20LibWeb: Split JS wrapper constructors into construct/initializeAndreas Kling
2020-06-20LibJS: Split more native object constructors into construct/initializeAndreas Kling
2020-06-20LibJS: Remove some Interpreter::global_object() calls in JSONObjectAndreas Kling
2020-06-20LibJS: Pass GlobalObject& to Reference get/putAndreas Kling
2020-06-20LibJS: Make Value::to_object() take a GlobalObject&Andreas Kling
2020-06-20LibJS: More Interpreter::global_object() removalAndreas Kling
2020-06-20LibJS: Pass GlobalObject& when constructing an AccessorAndreas Kling
2020-06-20LibJS: Move native objects towards two-pass constructionAndreas Kling
2020-06-20LibJS: Pass GlobalObject& to native functions and property accessorsAndreas Kling
2020-06-20LibJS: Remove some more use of Interpreter::global_object()Andreas Kling
2020-06-20LibC: In posix_spawn(), use _exit instead of exit on child errorNico Weber
2020-06-20LibC: Add addchdir() / addfchdir() to posix_spawn file actionsNico Weber
2020-06-20LibC: Add POSIX_SPAWN_SETSIGMASKNico Weber
2020-06-20LibC: Make sigprocmask error check more consistent with rest of this codeNico Weber
2020-06-19LibC: Implement file actions for posix_spawnNico Weber
2020-06-19LibC: Make spawn.h parse in C filesNico Weber
2020-06-19LibC: Add support for POSIX_SPAWN_RESETIDSNico Weber
2020-06-18Kernel+LibC: Remove setreuid() / setregid() againNico Weber
2020-06-18Kernel+LibC: Implement seteuid() and friends!Nico Weber
2020-06-18LibGUI: Add a new Window::is_maximized methodHüseyin ASLITÜRK
2020-06-18WavLoader: Search for DATA marker by reading single bytesTill Mayer
2020-06-18LibGUI: Fix MessageBox width calculation not including the icon widthAndreas Kling
2020-06-18LibWeb: Fix broken #include after moving files aroundAndreas Kling
2020-06-18LibWeb: Move StackingContext from Layout/ to Painting/Andreas Kling
2020-06-18LibWeb: Rename LayoutNode::render() to paint()Andreas Kling
2020-06-18LibWeb: Respect min-width and max-width on position:absolute elementsAndreas Kling
2020-06-18LibWeb: More work on width of position:absolute elementsAndreas Kling
2020-06-18LibWeb: Separate layout tree rendering into phasesAndreas Kling
2020-06-18LibWeb: Better width computation for position:absolute blocksAndreas Kling
2020-06-18AboutDialog: Replace Label with Image to show banner and app iconHüseyin ASLITÜRK
2020-06-18MessageBox: Replace Label with Image component to show iconsHüseyin ASLITÜRK
2020-06-18FilePicker: Replace Label with Image component to show iconsHüseyin ASLITÜRK
2020-06-18LibGfx: Fix color alfa for transparent color in GIFLoaderHüseyin ASLITÜRK
2020-06-18LibGUI: Add a new GUI::Image component for display imagesHüseyin ASLITÜRK
2020-06-17LibWeb: Add PageClient::palette() for view-agnostic palette accessAndreas Kling
2020-06-17LibC: Add posix_spawn()!Nico Weber
2020-06-17LibWeb: Make RenderingContext use Gfx::Painter instead of GUI::PainterAndreas Kling
2020-06-17Meta: Scale back overly informal user-facing stringsAndreas Kling
2020-06-17LibC: Make setgid() definition protoype match declarationNico Weber
2020-06-17LibGUI: Use Core::File::read_link()Sergey Bugaev
2020-06-17LibCore: Add File::read_link() :^)Sergey Bugaev
2020-06-17Kernel+LibC: Do not return -ENAMETOOLONG from sys$readlink()Sergey Bugaev
2020-06-16LibWeb: Make Element::tag_name() return a const FlyString&Andreas Kling
2020-06-16LibVT: Replace u8 type to u32 for code pointHüseyin ASLITÜRK
2020-06-16LibGUI: Replace text attribute on KeyEvent with code_point attributeHüseyin ASLITÜRK