mirror of
https://github.com/lightpanda-io/browser.git
synced 2025-10-29 15:13:28 +00:00
Add basic tests for CSSStyleSheet
This commit is contained in:
@@ -43,38 +43,3 @@ pub const CSSImportRule = struct {
|
|||||||
style_sheet: CSSStyleSheet,
|
style_sheet: CSSStyleSheet,
|
||||||
supports_text: ?[]const u8,
|
supports_text: ?[]const u8,
|
||||||
};
|
};
|
||||||
|
|
||||||
// pub const CSSGroupingRule = struct {
|
|
||||||
// pub const prototype = *CSSRule;
|
|
||||||
// list: std.ArrayListUnmanaged(CSSRule),
|
|
||||||
|
|
||||||
// pub fn _insertRule(self: *CSSGroupingRule, rule: []const u8, _index: ?usize, page: *Page) !usize {
|
|
||||||
// const index = _index orelse 0;
|
|
||||||
// if (index > self.list.items.len) return error.IndexSizeError;
|
|
||||||
|
|
||||||
// const css_rule: CSSRule = .{ .css_text = rule, .parent_rule = null, .parent_stylesheet = null };
|
|
||||||
// try self.list.insert(page.arena, index, css_rule);
|
|
||||||
// return self.list.items.len;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// pub fn _deleteRule(self: *CSSGroupingRule, index: usize) !void {
|
|
||||||
// if (index > self.list.items.len) return error.IndexSizeError;
|
|
||||||
// _ = self.list.orderedRemove(index);
|
|
||||||
// }
|
|
||||||
// };
|
|
||||||
|
|
||||||
// pub const CSSStyleRule = struct {
|
|
||||||
// pub const prototype = *CSSGroupingRule;
|
|
||||||
// selector_text: []const u8,
|
|
||||||
// style: CSSStyleDeclaration,
|
|
||||||
// };
|
|
||||||
|
|
||||||
// pub const CSSFontFaceRule = struct {
|
|
||||||
// pub const prototype = *CSSRule;
|
|
||||||
// };
|
|
||||||
|
|
||||||
// pub const CSSPageRule = struct {
|
|
||||||
// pub const prototype = *CSSGroupingRule;
|
|
||||||
// selector_text: []const u8,
|
|
||||||
// style: CSSStyleDeclaration,
|
|
||||||
// };
|
|
||||||
|
|||||||
62
src/browser/cssom/css_rule_list.zig
Normal file
62
src/browser/cssom/css_rule_list.zig
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
// Copyright (C) 2023-2024 Lightpanda (Selecy SAS)
|
||||||
|
//
|
||||||
|
// Francis Bouvier <francis@lightpanda.io>
|
||||||
|
// Pierre Tachoire <pierre@lightpanda.io>
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
const std = @import("std");
|
||||||
|
|
||||||
|
const Page = @import("../page.zig").Page;
|
||||||
|
const StyleSheet = @import("stylesheet.zig").StyleSheet;
|
||||||
|
|
||||||
|
const CSSRule = @import("css_rule.zig").CSSRule;
|
||||||
|
const CSSImportRule = @import("css_rule.zig").CSSImportRule;
|
||||||
|
|
||||||
|
pub const CSSRuleList = struct {
|
||||||
|
list: std.ArrayListUnmanaged([]const u8),
|
||||||
|
|
||||||
|
pub fn constructor() CSSRuleList {
|
||||||
|
return .{ .list = .empty };
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn _item(self: *CSSRuleList, _index: u32) ?CSSRule {
|
||||||
|
const index: usize = @intCast(_index);
|
||||||
|
|
||||||
|
if (index > self.list.items.len) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
// todo: for now, just return null.
|
||||||
|
// this depends on properly parsing CSSRule
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get_length(self: *CSSRuleList) u32 {
|
||||||
|
return @intCast(self.list.items.len);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const testing = @import("../../testing.zig");
|
||||||
|
test "Browser.CSS.CSSRuleList" {
|
||||||
|
var runner = try testing.jsRunner(testing.tracking_allocator, .{});
|
||||||
|
defer runner.deinit();
|
||||||
|
|
||||||
|
try runner.testCases(&.{
|
||||||
|
.{ "let list = new CSSRuleList()", "undefined" },
|
||||||
|
.{ "list instanceof CSSRuleList", "true" },
|
||||||
|
.{ "list.length", "0" },
|
||||||
|
.{ "list.item(0)", "null" },
|
||||||
|
}, .{});
|
||||||
|
}
|
||||||
@@ -21,55 +21,57 @@ const std = @import("std");
|
|||||||
const Page = @import("../page.zig").Page;
|
const Page = @import("../page.zig").Page;
|
||||||
const StyleSheet = @import("stylesheet.zig").StyleSheet;
|
const StyleSheet = @import("stylesheet.zig").StyleSheet;
|
||||||
|
|
||||||
const CSSRule = @import("css_rule.zig").CSSRule;
|
const CSSRuleList = @import("css_rule_list.zig").CSSRuleList;
|
||||||
const CSSImportRule = @import("css_rule.zig").CSSImportRule;
|
const CSSImportRule = @import("css_rule.zig").CSSImportRule;
|
||||||
|
|
||||||
pub const CSSStyleSheet = struct {
|
pub const CSSStyleSheet = struct {
|
||||||
pub const prototype = *StyleSheet;
|
pub const prototype = *StyleSheet;
|
||||||
|
|
||||||
// TODO: For now, we won't parse any rules.
|
css_rules: *CSSRuleList,
|
||||||
css_rules: std.ArrayListUnmanaged([]const u8),
|
owner_rule: ?*CSSImportRule,
|
||||||
|
|
||||||
// TODO: Support owner_rule here.
|
|
||||||
|
|
||||||
const CSSStyleSheetOpts = struct {
|
const CSSStyleSheetOpts = struct {
|
||||||
base_url: ?[]const u8,
|
base_url: ?[]const u8 = null,
|
||||||
// TODO: Suupport media
|
// TODO: Suupport media
|
||||||
disabled: bool = false,
|
disabled: bool = false,
|
||||||
};
|
};
|
||||||
|
|
||||||
pub fn constructor(_opts: ?CSSStyleSheetOpts) CSSStyleSheet {
|
pub fn constructor(_opts: ?CSSStyleSheetOpts, page: *Page) !CSSStyleSheet {
|
||||||
const opts = _opts orelse CSSStyleSheetOpts{};
|
const opts = _opts orelse CSSStyleSheetOpts{};
|
||||||
_ = opts;
|
_ = opts;
|
||||||
|
|
||||||
return .{ .css_rules = .empty, .owner_rule = null };
|
const arena = page.arena;
|
||||||
|
const rules = try arena.create(CSSRuleList);
|
||||||
|
rules.* = .constructor();
|
||||||
|
|
||||||
|
return .{ .css_rules = rules, .owner_rule = null };
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn get_ownerRule(_: *CSSStyleSheet) ?*CSSImportRule {
|
pub fn get_ownerRule(_: *CSSStyleSheet) ?*CSSImportRule {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn get_cssRules(self: *CSSStyleSheet) *std.ArrayListUnmanaged([]const u8) {
|
pub fn get_cssRules(self: *CSSStyleSheet) *CSSRuleList {
|
||||||
return self.css_rules;
|
return self.css_rules;
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn _insertRule(self: *CSSStyleSheet, rule: []const u8, _index: ?usize, page: *Page) !usize {
|
pub fn _insertRule(self: *CSSStyleSheet, rule: []const u8, _index: ?usize, page: *Page) !usize {
|
||||||
const index = _index orelse 0;
|
const index = _index orelse 0;
|
||||||
if (index > self.css_rules.items.len) {
|
if (index > self.css_rules.list.items.len) {
|
||||||
return error.IndexSize;
|
return error.IndexSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
const arena = page.arena;
|
const arena = page.arena;
|
||||||
try self.css_rules.insert(arena, index, arena.dupe(u8, rule));
|
try self.css_rules.list.insert(arena, index, try arena.dupe(u8, rule));
|
||||||
return index;
|
return index;
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn _deleteRule(self: *CSSStyleSheet, index: usize) !void {
|
pub fn _deleteRule(self: *CSSStyleSheet, index: usize) !void {
|
||||||
if (index > self.css_rules.items.len) {
|
if (index > self.css_rules.list.items.len) {
|
||||||
return error.IndexSize;
|
return error.IndexSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
_ = self.css_rules.orderedRemove(index);
|
_ = self.css_rules.list.orderedRemove(index);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -79,6 +81,12 @@ test "Browser.CSS.StyleSheet" {
|
|||||||
defer runner.deinit();
|
defer runner.deinit();
|
||||||
|
|
||||||
try runner.testCases(&.{
|
try runner.testCases(&.{
|
||||||
.{ "let css = new CSSStylesheet()", "" },
|
.{ "let css = new CSSStyleSheet()", "undefined" },
|
||||||
|
.{ "css instanceof CSSStyleSheet", "true" },
|
||||||
|
.{ "css.cssRules.length", "0" },
|
||||||
|
.{ "css.ownerRule", "null" },
|
||||||
|
.{ "let index1 = css.insertRule('body { color: red; }', 0)", "undefined" },
|
||||||
|
.{ "index1", "0" },
|
||||||
|
.{ "css.cssRules.length", "1" },
|
||||||
}, .{});
|
}, .{});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,10 +19,12 @@
|
|||||||
pub const Stylesheet = @import("stylesheet.zig").StyleSheet;
|
pub const Stylesheet = @import("stylesheet.zig").StyleSheet;
|
||||||
pub const CSSStylesheet = @import("css_stylesheet.zig").CSSStyleSheet;
|
pub const CSSStylesheet = @import("css_stylesheet.zig").CSSStyleSheet;
|
||||||
pub const CSSStyleDeclaration = @import("css_style_declaration.zig").CSSStyleDeclaration;
|
pub const CSSStyleDeclaration = @import("css_style_declaration.zig").CSSStyleDeclaration;
|
||||||
|
pub const CSSRuleList = @import("css_rule_list.zig").CSSRuleList;
|
||||||
|
|
||||||
pub const Interfaces = .{
|
pub const Interfaces = .{
|
||||||
Stylesheet,
|
Stylesheet,
|
||||||
CSSStylesheet,
|
CSSStylesheet,
|
||||||
CSSStyleDeclaration,
|
CSSStyleDeclaration,
|
||||||
|
CSSRuleList,
|
||||||
@import("css_rule.zig").Interfaces,
|
@import("css_rule.zig").Interfaces,
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user