mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Un-ignore some tests
This commit is contained in:
parent
452522ddcd
commit
5f3c2215ae
3 changed files with 4 additions and 6 deletions
|
@ -108,7 +108,6 @@ fn box_to_display_items(list: dl::display_list, box: @Box, origin: Point2D<au>)
|
||||||
|
|
||||||
fn should_convert_text_boxes_to_solid_color_background_items() {
|
fn should_convert_text_boxes_to_solid_color_background_items() {
|
||||||
#[test];
|
#[test];
|
||||||
#[ignore(reason = "crashy")];
|
|
||||||
|
|
||||||
let s = Scope();
|
let s = Scope();
|
||||||
let n = s.new_node(Text(~"firecracker"));
|
let n = s.new_node(Text(~"firecracker"));
|
||||||
|
@ -129,7 +128,6 @@ fn should_convert_text_boxes_to_solid_color_background_items() {
|
||||||
|
|
||||||
fn should_convert_text_boxes_to_text_items() {
|
fn should_convert_text_boxes_to_text_items() {
|
||||||
#[test];
|
#[test];
|
||||||
#[ignore(reason = "crashy")];
|
|
||||||
|
|
||||||
let s = Scope();
|
let s = Scope();
|
||||||
let n = s.new_node(Text(~"firecracker"));
|
let n = s.new_node(Text(~"firecracker"));
|
||||||
|
@ -149,7 +147,7 @@ fn should_convert_text_boxes_to_text_items() {
|
||||||
|
|
||||||
fn should_calculate_the_bounds_of_the_text_box_background_color() {
|
fn should_calculate_the_bounds_of_the_text_box_background_color() {
|
||||||
#[test];
|
#[test];
|
||||||
#[ignore];
|
#[ignore(cfg(target_os = "macos"))];
|
||||||
|
|
||||||
let s = Scope();
|
let s = Scope();
|
||||||
let n = s.new_node(Text(~"firecracker"));
|
let n = s.new_node(Text(~"firecracker"));
|
||||||
|
@ -171,7 +169,7 @@ fn should_calculate_the_bounds_of_the_text_box_background_color() {
|
||||||
|
|
||||||
fn should_calculate_the_bounds_of_the_text_items() {
|
fn should_calculate_the_bounds_of_the_text_items() {
|
||||||
#[test];
|
#[test];
|
||||||
#[ignore];
|
#[ignore(cfg(target_os = "macos"))];
|
||||||
|
|
||||||
let s = Scope();
|
let s = Scope();
|
||||||
let n = s.new_node(Text(~"firecracker"));
|
let n = s.new_node(Text(~"firecracker"));
|
||||||
|
|
|
@ -39,7 +39,7 @@ impl @Box : TextLayout {
|
||||||
|
|
||||||
fn should_calculate_the_size_of_the_text_box() {
|
fn should_calculate_the_size_of_the_text_box() {
|
||||||
#[test];
|
#[test];
|
||||||
#[ignore];
|
#[ignore(cfg(target_os = "macos"))];
|
||||||
|
|
||||||
import dom::rcu::{Scope};
|
import dom::rcu::{Scope};
|
||||||
import dom::base::{Text, NodeScope};
|
import dom::base::{Text, NodeScope};
|
||||||
|
|
|
@ -30,7 +30,7 @@ struct TextRun {
|
||||||
|
|
||||||
fn should_calculate_the_total_size() {
|
fn should_calculate_the_total_size() {
|
||||||
#[test];
|
#[test];
|
||||||
#[ignore(reason = "random failures")];
|
#[ignore(cfg(target_os = "macos"))];
|
||||||
|
|
||||||
let flib = FontLibrary();
|
let flib = FontLibrary();
|
||||||
let font = flib.get_test_font();
|
let font = flib.get_test_font();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue