Auto merge of #25499 - NeverHappened:implement-form-dirname, r=jdm

Implement dirname support for form element

Added support for dirname in input on form submit
Added Dir getter / setter for HTMLElement
NOT YET Added get directionality according to https://html.spec.whatwg.org/multipage/dom.html#the-directionality

- [X] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes fix #25379 (GitHub issue number if applicable)
This commit is contained in:
bors-servo 2020-02-24 21:18:10 -05:00 committed by GitHub
commit 145c89a2d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
27 changed files with 252 additions and 3303 deletions

6
Cargo.lock generated
View file

@ -4784,6 +4784,7 @@ dependencies = [
"tendril",
"time",
"tinyfiledialogs",
"unicode-bidi",
"unicode-segmentation",
"url",
"utf-8",
@ -6292,13 +6293,12 @@ dependencies = [
[[package]]
name = "unicode-bidi"
version = "0.3.3"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a6a2c4e3710edd365cd7e78383153ed739fa31af19f9172f72d3575060f5a43a"
checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
dependencies = [
"matches",
"serde",
"serde_derive",
]
[[package]]

View file

@ -1614,7 +1614,7 @@ where
Some(ctx) => ctx.pipeline_id,
None => {
return warn!(
"LoadUrl for unknow browsing context: {:?}",
"LoadUrl for unknown browsing context: {:?}",
top_level_browsing_context_id
);
},

View file

@ -149,7 +149,7 @@ pub enum EmbedderMsg {
ResizeTo(DeviceIntSize),
/// Show dialog to user
Prompt(PromptDefinition, PromptOrigin),
/// Wether or not to allow a pipeline to load a url.
/// Whether or not to allow a pipeline to load a url.
AllowNavigationRequest(PipelineId, ServoUrl),
/// Whether or not to allow script to open a new tab/browser
AllowOpeningBrowser(IpcSender<bool>),

View file

@ -110,6 +110,7 @@ style_traits = {path = "../style_traits"}
swapper = "0.1"
tendril = {version = "0.4.1", features = ["encoding_rs"]}
time = "0.1.12"
unicode-bidi = "0.3.4"
unicode-segmentation = "1.1.0"
url = "2.0"
utf-8 = "0.7"

View file

@ -540,6 +540,16 @@ impl Element {
}
true // whatwg/html#5239
}
// https://html.spec.whatwg.org/multipage/#the-directionality
pub fn directionality(&self) -> String {
self.downcast::<HTMLElement>()
.and_then(|html_element| html_element.directionality())
.unwrap_or_else(|| {
let node = self.upcast::<Node>();
node.parent_directionality()
})
}
}
#[allow(unsafe_code)]

View file

@ -27,6 +27,7 @@ use crate::dom::htmlframesetelement::HTMLFrameSetElement;
use crate::dom::htmlhtmlelement::HTMLHtmlElement;
use crate::dom::htmlinputelement::{HTMLInputElement, InputType};
use crate::dom::htmllabelelement::HTMLLabelElement;
use crate::dom::htmltextareaelement::HTMLTextAreaElement;
use crate::dom::node::{document_from_node, window_from_node};
use crate::dom::node::{BindContext, Node, NodeFlags, ShadowIncluding};
use crate::dom::text::Text;
@ -170,6 +171,11 @@ impl HTMLElementMethods for HTMLElement {
// https://html.spec.whatwg.org/multipage/#dom-hidden
make_bool_setter!(SetHidden, "hidden");
// https://html.spec.whatwg.org/multipage/#the-dir-attribute
make_getter!(Dir, "dir");
// https://html.spec.whatwg.org/multipage/#the-dir-attribute
make_setter!(SetDir, "dir");
// https://html.spec.whatwg.org/multipage/#globaleventhandlers
global_event_handlers!(NoOnload);
@ -767,6 +773,48 @@ impl HTMLElement {
})
.count() as u32
}
// https://html.spec.whatwg.org/multipage/#the-directionality.
// returns Some if can infer direction by itself or from child nodes
// returns None if requires to go up to parent
pub fn directionality(&self) -> Option<String> {
let element_direction: &str = &self.Dir();
if element_direction == "ltr" {
return Some("ltr".to_owned());
}
if element_direction == "rtl" {
return Some("rtl".to_owned());
}
if let Some(input) = self.downcast::<HTMLInputElement>() {
if input.input_type() == InputType::Tel {
return Some("ltr".to_owned());
}
}
if element_direction == "auto" {
if let Some(directionality) = self
.downcast::<HTMLInputElement>()
.and_then(|input| input.auto_directionality())
{
return Some(directionality);
}
if let Some(area) = self.downcast::<HTMLTextAreaElement>() {
return Some(area.auto_directionality());
}
}
// TODO(NeverHappened): Implement condition
// If the element's dir attribute is in the auto state OR
// If the element is a bdi element and the dir attribute is not in a defined state
// (i.e. it is not present or has an invalid value)
// Requires bdi element implementation (https://html.spec.whatwg.org/multipage/#the-bdi-element)
None
}
}
impl VirtualMethods for HTMLElement {

View file

@ -950,7 +950,6 @@ impl HTMLFormElement {
match element {
HTMLElementTypeId::HTMLInputElement => {
let input = child.downcast::<HTMLInputElement>().unwrap();
data_set.append(&mut input.form_datums(submitter, encoding));
},
HTMLElementTypeId::HTMLButtonElement => {
@ -981,10 +980,30 @@ impl HTMLFormElement {
_ => (),
}
}
// Step: 5.13. Add an entry if element has dirname attribute
// An element can only have a dirname attribute if it is a textarea element
// or an input element whose type attribute is in either the Text state or the Search state
let child_element = child.downcast::<Element>().unwrap();
let input_matches =
child_element
.downcast::<HTMLInputElement>()
.map_or(false, |input| {
input.input_type() == InputType::Text ||
input.input_type() == InputType::Search
});
let textarea_matches = child_element.is::<HTMLTextAreaElement>();
let dirname = child_element.get_string_attribute(&local_name!("dirname"));
if (input_matches || textarea_matches) && !dirname.is_empty() {
let dir = DOMString::from(child_element.directionality());
data_set.push(FormDatum {
ty: DOMString::from("string"),
name: dirname,
value: FormDatumValue::String(dir),
});
}
}
data_set
// TODO: Handle `dirnames` (needs directionality support)
// https://html.spec.whatwg.org/multipage/#the-directionality
}
/// <https://html.spec.whatwg.org/multipage/#constructing-the-form-data-set>

View file

@ -75,6 +75,7 @@ use std::ptr::NonNull;
use style::attr::AttrValue;
use style::element_state::ElementState;
use style::str::{split_commas, str_join};
use unicode_bidi::{bidi_class, BidiClass};
const DEFAULT_SUBMIT_VALUE: &'static str = "Submit";
const DEFAULT_RESET_VALUE: &'static str = "Reset";
@ -327,6 +328,36 @@ impl HTMLInputElement {
)
}
pub fn auto_directionality(&self) -> Option<String> {
match self.input_type() {
InputType::Text | InputType::Search | InputType::Url | InputType::Email => {
let value: String = self.Value().to_string();
Some(HTMLInputElement::directionality_from_value(&value))
},
_ => None,
}
}
pub fn directionality_from_value(value: &str) -> String {
if HTMLInputElement::is_first_strong_character_rtl(value) {
"rtl".to_owned()
} else {
"ltr".to_owned()
}
}
fn is_first_strong_character_rtl(value: &str) -> bool {
for ch in value.chars() {
return match bidi_class(ch) {
BidiClass::L => false,
BidiClass::AL => true,
BidiClass::R => true,
_ => continue,
};
}
false
}
// https://html.spec.whatwg.org/multipage/#dom-input-value
// https://html.spec.whatwg.org/multipage/#concept-input-apply
fn value_mode(&self) -> ValueMode {

View file

@ -22,6 +22,7 @@ use crate::dom::globalscope::GlobalScope;
use crate::dom::htmlelement::HTMLElement;
use crate::dom::htmlfieldsetelement::HTMLFieldSetElement;
use crate::dom::htmlformelement::{FormControl, HTMLFormElement};
use crate::dom::htmlinputelement::HTMLInputElement;
use crate::dom::keyboardevent::KeyboardEvent;
use crate::dom::node::{document_from_node, window_from_node};
use crate::dom::node::{
@ -173,6 +174,11 @@ impl HTMLTextAreaElement {
)
}
pub fn auto_directionality(&self) -> String {
let value: String = self.Value().to_string();
return HTMLInputElement::directionality_from_value(&value);
}
fn update_placeholder_shown_state(&self) {
let has_placeholder = !self.placeholder.borrow().is_empty();
let has_value = !self.textinput.borrow().is_empty();
@ -205,6 +211,12 @@ impl HTMLTextAreaElementMethods for HTMLTextAreaElement {
// https://html.spec.whatwg.org/multipage/#dom-textarea-cols
make_limited_uint_setter!(SetCols, "cols", DEFAULT_COLS);
// https://html.spec.whatwg.org/multipage/#dom-input-dirName
make_getter!(DirName, "dirname");
// https://html.spec.whatwg.org/multipage/#dom-input-dirName
make_setter!(SetDirName, "dirname");
// https://html.spec.whatwg.org/multipage/#dom-fe-disabled
make_bool_getter!(Disabled, "disabled");

View file

@ -440,6 +440,26 @@ impl Node {
.upcast::<Event>()
.dispatch(self.upcast::<EventTarget>(), false);
}
pub fn parent_directionality(&self) -> String {
let mut current = self.GetParentNode();
loop {
match current {
Some(node) => {
if let Some(directionality) = node
.downcast::<HTMLElement>()
.and_then(|html_element| html_element.directionality())
{
return directionality;
} else {
current = node.GetParentNode();
}
},
None => return "ltr".to_owned(),
}
}
}
}
pub struct QuerySelectorIterator {

View file

@ -14,8 +14,8 @@ interface HTMLElement : Element {
attribute DOMString lang;
[CEReactions]
attribute boolean translate;
// [CEReactions]
// attribute DOMString dir;
[CEReactions]
attribute DOMString dir;
readonly attribute DOMStringMap dataset;
// microdata

View file

@ -13,8 +13,8 @@ interface HTMLTextAreaElement : HTMLElement {
// attribute boolean autofocus;
[CEReactions, SetterThrows]
attribute unsigned long cols;
// [CEReactions]
// attribute DOMString dirName;
[CEReactions]
attribute DOMString dirName;
[CEReactions]
attribute boolean disabled;
readonly attribute HTMLFormElement? form;

View file

@ -438076,7 +438076,21 @@
"forms": {
"attributes-common-to-form-controls": {
"dirname-ltr.html": [
"28d1c150b37258176a0d13f0ea47b85ef5ddba52",
"9d1c9eb77e9fdef844689bb71b44c8c2271e6ba4",
[
null,
{}
]
],
"dirname-rtl-auto.html": [
"6368a26fafd74105428969660fec3d29bbcb4dce",
[
null,
{}
]
],
"dirname-rtl-inherited.html": [
"1e6967d914a34de49033b1ea358b4093f11baf97",
[
null,
{}

View file

@ -1,11 +1,5 @@
[HTMLElement.html]
type: testharness
[dir on HTMLElement must enqueue an attributeChanged reaction when adding dir content attribute]
expected: FAIL
[dir on HTMLElement must enqueue an attributeChanged reaction when replacing an existing attribute]
expected: FAIL
[tabIndex on HTMLElement must enqueue an attributeChanged reaction when adding tabindex content attribute]
expected: FAIL

View file

@ -2112,9 +2112,6 @@
[HTMLTableColElement interface: attribute ch]
expected: FAIL
[HTMLTextAreaElement interface: attribute dirName]
expected: FAIL
[HTMLObjectElement interface: document.createElement("object") must inherit property "codeBase" with the proper type]
expected: FAIL
@ -2445,9 +2442,6 @@
[HTMLInputElement interface: createInput("month") must inherit property "align" with the proper type]
expected: FAIL
[HTMLElement interface: attribute dir]
expected: FAIL
[HTMLIFrameElement interface: attribute align]
expected: FAIL
@ -2997,9 +2991,6 @@
[HTMLImageElement interface: document.createElement("img") must inherit property "referrerPolicy" with the proper type]
expected: FAIL
[HTMLElement interface: document.createElement("noscript") must inherit property "dir" with the proper type]
expected: FAIL
[HTMLDialogElement interface: operation showModal()]
expected: FAIL
@ -3939,9 +3930,6 @@
[HTMLObjectElement interface: attribute standby]
expected: FAIL
[HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "dirName" with the proper type]
expected: FAIL
[HTMLParamElement interface: attribute type]
expected: FAIL

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,11 +1,5 @@
[reflection-metadata.html]
type: testharness
[head.dir: typeof IDL attribute]
expected: FAIL
[head.dir: IDL get with DOM attribute unset]
expected: FAIL
[head.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -714,12 +708,6 @@
[head.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[title.dir: typeof IDL attribute]
expected: FAIL
[title.dir: IDL get with DOM attribute unset]
expected: FAIL
[title.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -1428,12 +1416,6 @@
[title.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[base.dir: typeof IDL attribute]
expected: FAIL
[base.dir: IDL get with DOM attribute unset]
expected: FAIL
[base.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -2271,12 +2253,6 @@
[base.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[link.dir: typeof IDL attribute]
expected: FAIL
[link.dir: IDL get with DOM attribute unset]
expected: FAIL
[link.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -3195,12 +3171,6 @@
[link.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[meta.dir: typeof IDL attribute]
expected: FAIL
[meta.dir: IDL get with DOM attribute unset]
expected: FAIL
[meta.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -4167,12 +4137,6 @@
[meta.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[style.dir: typeof IDL attribute]
expected: FAIL
[style.dir: IDL get with DOM attribute unset]
expected: FAIL
[style.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -7380,9 +7344,6 @@
[link.crossOrigin: IDL set to null followed by getAttribute()]
expected: FAIL
[head.dir: setAttribute() to ""]
expected: FAIL
[head.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -7425,9 +7386,6 @@
[head.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[head.dir: setAttribute() to "ltr"]
expected: FAIL
[head.dir: setAttribute() to "xltr"]
expected: FAIL
@ -7440,9 +7398,6 @@
[head.dir: setAttribute() to "LTR"]
expected: FAIL
[head.dir: setAttribute() to "rtl"]
expected: FAIL
[head.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -7455,9 +7410,6 @@
[head.dir: setAttribute() to "RTL"]
expected: FAIL
[head.dir: setAttribute() to "auto"]
expected: FAIL
[head.dir: setAttribute() to "xauto"]
expected: FAIL
@ -7470,9 +7422,6 @@
[head.dir: setAttribute() to "AUTO"]
expected: FAIL
[head.dir: IDL set to ""]
expected: FAIL
[head.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -7515,9 +7464,6 @@
[head.dir: IDL set to object "test-valueOf"]
expected: FAIL
[head.dir: IDL set to "ltr"]
expected: FAIL
[head.dir: IDL set to "xltr"]
expected: FAIL
@ -7530,9 +7476,6 @@
[head.dir: IDL set to "LTR"]
expected: FAIL
[head.dir: IDL set to "rtl"]
expected: FAIL
[head.dir: IDL set to "xrtl"]
expected: FAIL
@ -7545,9 +7488,6 @@
[head.dir: IDL set to "RTL"]
expected: FAIL
[head.dir: IDL set to "auto"]
expected: FAIL
[head.dir: IDL set to "xauto"]
expected: FAIL
@ -7719,9 +7659,6 @@
[head.tabIndex: IDL set to -2147483648]
expected: FAIL
[title.dir: setAttribute() to ""]
expected: FAIL
[title.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -7764,9 +7701,6 @@
[title.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[title.dir: setAttribute() to "ltr"]
expected: FAIL
[title.dir: setAttribute() to "xltr"]
expected: FAIL
@ -7779,9 +7713,6 @@
[title.dir: setAttribute() to "LTR"]
expected: FAIL
[title.dir: setAttribute() to "rtl"]
expected: FAIL
[title.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -7794,9 +7725,6 @@
[title.dir: setAttribute() to "RTL"]
expected: FAIL
[title.dir: setAttribute() to "auto"]
expected: FAIL
[title.dir: setAttribute() to "xauto"]
expected: FAIL
@ -7809,9 +7737,6 @@
[title.dir: setAttribute() to "AUTO"]
expected: FAIL
[title.dir: IDL set to ""]
expected: FAIL
[title.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -7854,9 +7779,6 @@
[title.dir: IDL set to object "test-valueOf"]
expected: FAIL
[title.dir: IDL set to "ltr"]
expected: FAIL
[title.dir: IDL set to "xltr"]
expected: FAIL
@ -7869,9 +7791,6 @@
[title.dir: IDL set to "LTR"]
expected: FAIL
[title.dir: IDL set to "rtl"]
expected: FAIL
[title.dir: IDL set to "xrtl"]
expected: FAIL
@ -7884,9 +7803,6 @@
[title.dir: IDL set to "RTL"]
expected: FAIL
[title.dir: IDL set to "auto"]
expected: FAIL
[title.dir: IDL set to "xauto"]
expected: FAIL
@ -8058,9 +7974,6 @@
[title.tabIndex: IDL set to -2147483648]
expected: FAIL
[base.dir: setAttribute() to ""]
expected: FAIL
[base.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -8103,9 +8016,6 @@
[base.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[base.dir: setAttribute() to "ltr"]
expected: FAIL
[base.dir: setAttribute() to "xltr"]
expected: FAIL
@ -8118,9 +8028,6 @@
[base.dir: setAttribute() to "LTR"]
expected: FAIL
[base.dir: setAttribute() to "rtl"]
expected: FAIL
[base.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -8133,9 +8040,6 @@
[base.dir: setAttribute() to "RTL"]
expected: FAIL
[base.dir: setAttribute() to "auto"]
expected: FAIL
[base.dir: setAttribute() to "xauto"]
expected: FAIL
@ -8148,9 +8052,6 @@
[base.dir: setAttribute() to "AUTO"]
expected: FAIL
[base.dir: IDL set to ""]
expected: FAIL
[base.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -8193,9 +8094,6 @@
[base.dir: IDL set to object "test-valueOf"]
expected: FAIL
[base.dir: IDL set to "ltr"]
expected: FAIL
[base.dir: IDL set to "xltr"]
expected: FAIL
@ -8208,9 +8106,6 @@
[base.dir: IDL set to "LTR"]
expected: FAIL
[base.dir: IDL set to "rtl"]
expected: FAIL
[base.dir: IDL set to "xrtl"]
expected: FAIL
@ -8223,9 +8118,6 @@
[base.dir: IDL set to "RTL"]
expected: FAIL
[base.dir: IDL set to "auto"]
expected: FAIL
[base.dir: IDL set to "xauto"]
expected: FAIL
@ -8487,9 +8379,6 @@
[base.target: IDL set to object "test-valueOf"]
expected: FAIL
[link.dir: setAttribute() to ""]
expected: FAIL
[link.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -8532,9 +8421,6 @@
[link.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[link.dir: setAttribute() to "ltr"]
expected: FAIL
[link.dir: setAttribute() to "xltr"]
expected: FAIL
@ -8547,9 +8433,6 @@
[link.dir: setAttribute() to "LTR"]
expected: FAIL
[link.dir: setAttribute() to "rtl"]
expected: FAIL
[link.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -8562,9 +8445,6 @@
[link.dir: setAttribute() to "RTL"]
expected: FAIL
[link.dir: setAttribute() to "auto"]
expected: FAIL
[link.dir: setAttribute() to "xauto"]
expected: FAIL
@ -8577,9 +8457,6 @@
[link.dir: setAttribute() to "AUTO"]
expected: FAIL
[link.dir: IDL set to ""]
expected: FAIL
[link.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -8622,9 +8499,6 @@
[link.dir: IDL set to object "test-valueOf"]
expected: FAIL
[link.dir: IDL set to "ltr"]
expected: FAIL
[link.dir: IDL set to "xltr"]
expected: FAIL
@ -8637,9 +8511,6 @@
[link.dir: IDL set to "LTR"]
expected: FAIL
[link.dir: IDL set to "rtl"]
expected: FAIL
[link.dir: IDL set to "xrtl"]
expected: FAIL
@ -8652,9 +8523,6 @@
[link.dir: IDL set to "RTL"]
expected: FAIL
[link.dir: IDL set to "auto"]
expected: FAIL
[link.dir: IDL set to "xauto"]
expected: FAIL
@ -8826,9 +8694,6 @@
[link.tabIndex: IDL set to -2147483648]
expected: FAIL
[meta.dir: setAttribute() to ""]
expected: FAIL
[meta.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -8871,9 +8736,6 @@
[meta.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[meta.dir: setAttribute() to "ltr"]
expected: FAIL
[meta.dir: setAttribute() to "xltr"]
expected: FAIL
@ -8886,9 +8748,6 @@
[meta.dir: setAttribute() to "LTR"]
expected: FAIL
[meta.dir: setAttribute() to "rtl"]
expected: FAIL
[meta.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -8901,9 +8760,6 @@
[meta.dir: setAttribute() to "RTL"]
expected: FAIL
[meta.dir: setAttribute() to "auto"]
expected: FAIL
[meta.dir: setAttribute() to "xauto"]
expected: FAIL
@ -8916,9 +8772,6 @@
[meta.dir: setAttribute() to "AUTO"]
expected: FAIL
[meta.dir: IDL set to ""]
expected: FAIL
[meta.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -8961,9 +8814,6 @@
[meta.dir: IDL set to object "test-valueOf"]
expected: FAIL
[meta.dir: IDL set to "ltr"]
expected: FAIL
[meta.dir: IDL set to "xltr"]
expected: FAIL
@ -8976,9 +8826,6 @@
[meta.dir: IDL set to "LTR"]
expected: FAIL
[meta.dir: IDL set to "rtl"]
expected: FAIL
[meta.dir: IDL set to "xrtl"]
expected: FAIL
@ -8991,9 +8838,6 @@
[meta.dir: IDL set to "RTL"]
expected: FAIL
[meta.dir: IDL set to "auto"]
expected: FAIL
[meta.dir: IDL set to "xauto"]
expected: FAIL
@ -9345,9 +9189,6 @@
[meta.scheme: IDL set to object "test-valueOf"]
expected: FAIL
[style.dir: setAttribute() to ""]
expected: FAIL
[style.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -9390,9 +9231,6 @@
[style.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[style.dir: setAttribute() to "ltr"]
expected: FAIL
[style.dir: setAttribute() to "xltr"]
expected: FAIL
@ -9405,9 +9243,6 @@
[style.dir: setAttribute() to "LTR"]
expected: FAIL
[style.dir: setAttribute() to "rtl"]
expected: FAIL
[style.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -9420,9 +9255,6 @@
[style.dir: setAttribute() to "RTL"]
expected: FAIL
[style.dir: setAttribute() to "auto"]
expected: FAIL
[style.dir: setAttribute() to "xauto"]
expected: FAIL
@ -9435,9 +9267,6 @@
[style.dir: setAttribute() to "AUTO"]
expected: FAIL
[style.dir: IDL set to ""]
expected: FAIL
[style.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -9480,9 +9309,6 @@
[style.dir: IDL set to object "test-valueOf"]
expected: FAIL
[style.dir: IDL set to "ltr"]
expected: FAIL
[style.dir: IDL set to "xltr"]
expected: FAIL
@ -9495,9 +9321,6 @@
[style.dir: IDL set to "LTR"]
expected: FAIL
[style.dir: IDL set to "rtl"]
expected: FAIL
[style.dir: IDL set to "xrtl"]
expected: FAIL
@ -9510,9 +9333,6 @@
[style.dir: IDL set to "RTL"]
expected: FAIL
[style.dir: IDL set to "auto"]
expected: FAIL
[style.dir: IDL set to "xauto"]
expected: FAIL

View file

@ -1,11 +1,5 @@
[reflection-misc.html]
type: testharness
[html.dir: typeof IDL attribute]
expected: FAIL
[html.dir: IDL get with DOM attribute unset]
expected: FAIL
[html.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -858,12 +852,6 @@
[html.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[script.dir: typeof IDL attribute]
expected: FAIL
[script.dir: IDL get with DOM attribute unset]
expected: FAIL
[script.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -1587,12 +1575,6 @@
[script.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[noscript.dir: typeof IDL attribute]
expected: FAIL
[noscript.dir: IDL get with DOM attribute unset]
expected: FAIL
[noscript.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -2316,12 +2298,6 @@
[noscript.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[ins.dir: typeof IDL attribute]
expected: FAIL
[ins.dir: IDL get with DOM attribute unset]
expected: FAIL
[ins.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -3336,12 +3312,6 @@
[ins.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[del.dir: typeof IDL attribute]
expected: FAIL
[del.dir: IDL get with DOM attribute unset]
expected: FAIL
[del.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -4356,12 +4326,6 @@
[del.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[details.dir: typeof IDL attribute]
expected: FAIL
[details.dir: IDL get with DOM attribute unset]
expected: FAIL
[details.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -5085,12 +5049,6 @@
[details.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[summary.dir: typeof IDL attribute]
expected: FAIL
[summary.dir: IDL get with DOM attribute unset]
expected: FAIL
[summary.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -5814,12 +5772,6 @@
[summary.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[menu.dir: typeof IDL attribute]
expected: FAIL
[menu.dir: IDL get with DOM attribute unset]
expected: FAIL
[menu.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -8406,12 +8358,6 @@
[menuitem.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[undefinedelement.dir: typeof IDL attribute]
expected: FAIL
[undefinedelement.dir: IDL get with DOM attribute unset]
expected: FAIL
[undefinedelement.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -11394,12 +11340,6 @@
[menu.type: IDL set to "TOOLBAR" followed by IDL get]
expected: FAIL
[dialog.dir: typeof IDL attribute]
expected: FAIL
[dialog.dir: IDL get with DOM attribute unset]
expected: FAIL
[dialog.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -12123,9 +12063,6 @@
[dialog.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[html.dir: setAttribute() to ""]
expected: FAIL
[html.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -12168,9 +12105,6 @@
[html.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[html.dir: setAttribute() to "ltr"]
expected: FAIL
[html.dir: setAttribute() to "xltr"]
expected: FAIL
@ -12183,9 +12117,6 @@
[html.dir: setAttribute() to "LTR"]
expected: FAIL
[html.dir: setAttribute() to "rtl"]
expected: FAIL
[html.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -12198,9 +12129,6 @@
[html.dir: setAttribute() to "RTL"]
expected: FAIL
[html.dir: setAttribute() to "auto"]
expected: FAIL
[html.dir: setAttribute() to "xauto"]
expected: FAIL
@ -12213,9 +12141,6 @@
[html.dir: setAttribute() to "AUTO"]
expected: FAIL
[html.dir: IDL set to ""]
expected: FAIL
[html.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -12258,9 +12183,6 @@
[html.dir: IDL set to object "test-valueOf"]
expected: FAIL
[html.dir: IDL set to "ltr"]
expected: FAIL
[html.dir: IDL set to "xltr"]
expected: FAIL
@ -12273,9 +12195,6 @@
[html.dir: IDL set to "LTR"]
expected: FAIL
[html.dir: IDL set to "rtl"]
expected: FAIL
[html.dir: IDL set to "xrtl"]
expected: FAIL
@ -12288,9 +12207,6 @@
[html.dir: IDL set to "RTL"]
expected: FAIL
[html.dir: IDL set to "auto"]
expected: FAIL
[html.dir: IDL set to "xauto"]
expected: FAIL
@ -12552,9 +12468,6 @@
[html.version: IDL set to object "test-valueOf"]
expected: FAIL
[script.dir: setAttribute() to ""]
expected: FAIL
[script.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -12597,9 +12510,6 @@
[script.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[script.dir: setAttribute() to "ltr"]
expected: FAIL
[script.dir: setAttribute() to "xltr"]
expected: FAIL
@ -12612,9 +12522,6 @@
[script.dir: setAttribute() to "LTR"]
expected: FAIL
[script.dir: setAttribute() to "rtl"]
expected: FAIL
[script.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -12627,9 +12534,6 @@
[script.dir: setAttribute() to "RTL"]
expected: FAIL
[script.dir: setAttribute() to "auto"]
expected: FAIL
[script.dir: setAttribute() to "xauto"]
expected: FAIL
@ -12642,9 +12546,6 @@
[script.dir: setAttribute() to "AUTO"]
expected: FAIL
[script.dir: IDL set to ""]
expected: FAIL
[script.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -12687,9 +12588,6 @@
[script.dir: IDL set to object "test-valueOf"]
expected: FAIL
[script.dir: IDL set to "ltr"]
expected: FAIL
[script.dir: IDL set to "xltr"]
expected: FAIL
@ -12702,9 +12600,6 @@
[script.dir: IDL set to "LTR"]
expected: FAIL
[script.dir: IDL set to "rtl"]
expected: FAIL
[script.dir: IDL set to "xrtl"]
expected: FAIL
@ -12717,9 +12612,6 @@
[script.dir: IDL set to "RTL"]
expected: FAIL
[script.dir: IDL set to "auto"]
expected: FAIL
[script.dir: IDL set to "xauto"]
expected: FAIL
@ -12891,9 +12783,6 @@
[script.tabIndex: IDL set to -2147483648]
expected: FAIL
[noscript.dir: setAttribute() to ""]
expected: FAIL
[noscript.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -12936,9 +12825,6 @@
[noscript.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[noscript.dir: setAttribute() to "ltr"]
expected: FAIL
[noscript.dir: setAttribute() to "xltr"]
expected: FAIL
@ -12951,9 +12837,6 @@
[noscript.dir: setAttribute() to "LTR"]
expected: FAIL
[noscript.dir: setAttribute() to "rtl"]
expected: FAIL
[noscript.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -12966,9 +12849,6 @@
[noscript.dir: setAttribute() to "RTL"]
expected: FAIL
[noscript.dir: setAttribute() to "auto"]
expected: FAIL
[noscript.dir: setAttribute() to "xauto"]
expected: FAIL
@ -12981,9 +12861,6 @@
[noscript.dir: setAttribute() to "AUTO"]
expected: FAIL
[noscript.dir: IDL set to ""]
expected: FAIL
[noscript.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -13026,9 +12903,6 @@
[noscript.dir: IDL set to object "test-valueOf"]
expected: FAIL
[noscript.dir: IDL set to "ltr"]
expected: FAIL
[noscript.dir: IDL set to "xltr"]
expected: FAIL
@ -13041,9 +12915,6 @@
[noscript.dir: IDL set to "LTR"]
expected: FAIL
[noscript.dir: IDL set to "rtl"]
expected: FAIL
[noscript.dir: IDL set to "xrtl"]
expected: FAIL
@ -13056,9 +12927,6 @@
[noscript.dir: IDL set to "RTL"]
expected: FAIL
[noscript.dir: IDL set to "auto"]
expected: FAIL
[noscript.dir: IDL set to "xauto"]
expected: FAIL
@ -13230,9 +13098,6 @@
[noscript.tabIndex: IDL set to -2147483648]
expected: FAIL
[ins.dir: setAttribute() to ""]
expected: FAIL
[ins.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -13275,9 +13140,6 @@
[ins.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[ins.dir: setAttribute() to "ltr"]
expected: FAIL
[ins.dir: setAttribute() to "xltr"]
expected: FAIL
@ -13290,9 +13152,6 @@
[ins.dir: setAttribute() to "LTR"]
expected: FAIL
[ins.dir: setAttribute() to "rtl"]
expected: FAIL
[ins.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -13305,9 +13164,6 @@
[ins.dir: setAttribute() to "RTL"]
expected: FAIL
[ins.dir: setAttribute() to "auto"]
expected: FAIL
[ins.dir: setAttribute() to "xauto"]
expected: FAIL
@ -13320,9 +13176,6 @@
[ins.dir: setAttribute() to "AUTO"]
expected: FAIL
[ins.dir: IDL set to ""]
expected: FAIL
[ins.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -13365,9 +13218,6 @@
[ins.dir: IDL set to object "test-valueOf"]
expected: FAIL
[ins.dir: IDL set to "ltr"]
expected: FAIL
[ins.dir: IDL set to "xltr"]
expected: FAIL
@ -13380,9 +13230,6 @@
[ins.dir: IDL set to "LTR"]
expected: FAIL
[ins.dir: IDL set to "rtl"]
expected: FAIL
[ins.dir: IDL set to "xrtl"]
expected: FAIL
@ -13395,9 +13242,6 @@
[ins.dir: IDL set to "RTL"]
expected: FAIL
[ins.dir: IDL set to "auto"]
expected: FAIL
[ins.dir: IDL set to "xauto"]
expected: FAIL
@ -13767,9 +13611,6 @@
[ins.dateTime: IDL set to object "test-valueOf"]
expected: FAIL
[del.dir: setAttribute() to ""]
expected: FAIL
[del.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -13812,9 +13653,6 @@
[del.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[del.dir: setAttribute() to "ltr"]
expected: FAIL
[del.dir: setAttribute() to "xltr"]
expected: FAIL
@ -13827,9 +13665,6 @@
[del.dir: setAttribute() to "LTR"]
expected: FAIL
[del.dir: setAttribute() to "rtl"]
expected: FAIL
[del.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -13842,9 +13677,6 @@
[del.dir: setAttribute() to "RTL"]
expected: FAIL
[del.dir: setAttribute() to "auto"]
expected: FAIL
[del.dir: setAttribute() to "xauto"]
expected: FAIL
@ -13857,9 +13689,6 @@
[del.dir: setAttribute() to "AUTO"]
expected: FAIL
[del.dir: IDL set to ""]
expected: FAIL
[del.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -13902,9 +13731,6 @@
[del.dir: IDL set to object "test-valueOf"]
expected: FAIL
[del.dir: IDL set to "ltr"]
expected: FAIL
[del.dir: IDL set to "xltr"]
expected: FAIL
@ -13917,9 +13743,6 @@
[del.dir: IDL set to "LTR"]
expected: FAIL
[del.dir: IDL set to "rtl"]
expected: FAIL
[del.dir: IDL set to "xrtl"]
expected: FAIL
@ -13932,9 +13755,6 @@
[del.dir: IDL set to "RTL"]
expected: FAIL
[del.dir: IDL set to "auto"]
expected: FAIL
[del.dir: IDL set to "xauto"]
expected: FAIL
@ -14304,9 +14124,6 @@
[del.dateTime: IDL set to object "test-valueOf"]
expected: FAIL
[details.dir: setAttribute() to ""]
expected: FAIL
[details.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -14349,9 +14166,6 @@
[details.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[details.dir: setAttribute() to "ltr"]
expected: FAIL
[details.dir: setAttribute() to "xltr"]
expected: FAIL
@ -14364,9 +14178,6 @@
[details.dir: setAttribute() to "LTR"]
expected: FAIL
[details.dir: setAttribute() to "rtl"]
expected: FAIL
[details.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -14379,9 +14190,6 @@
[details.dir: setAttribute() to "RTL"]
expected: FAIL
[details.dir: setAttribute() to "auto"]
expected: FAIL
[details.dir: setAttribute() to "xauto"]
expected: FAIL
@ -14394,9 +14202,6 @@
[details.dir: setAttribute() to "AUTO"]
expected: FAIL
[details.dir: IDL set to ""]
expected: FAIL
[details.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -14439,9 +14244,6 @@
[details.dir: IDL set to object "test-valueOf"]
expected: FAIL
[details.dir: IDL set to "ltr"]
expected: FAIL
[details.dir: IDL set to "xltr"]
expected: FAIL
@ -14454,9 +14256,6 @@
[details.dir: IDL set to "LTR"]
expected: FAIL
[details.dir: IDL set to "rtl"]
expected: FAIL
[details.dir: IDL set to "xrtl"]
expected: FAIL
@ -14469,9 +14268,6 @@
[details.dir: IDL set to "RTL"]
expected: FAIL
[details.dir: IDL set to "auto"]
expected: FAIL
[details.dir: IDL set to "xauto"]
expected: FAIL
@ -14643,9 +14439,6 @@
[details.tabIndex: IDL set to -2147483648]
expected: FAIL
[summary.dir: setAttribute() to ""]
expected: FAIL
[summary.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -14688,9 +14481,6 @@
[summary.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[summary.dir: setAttribute() to "ltr"]
expected: FAIL
[summary.dir: setAttribute() to "xltr"]
expected: FAIL
@ -14703,9 +14493,6 @@
[summary.dir: setAttribute() to "LTR"]
expected: FAIL
[summary.dir: setAttribute() to "rtl"]
expected: FAIL
[summary.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -14718,9 +14505,6 @@
[summary.dir: setAttribute() to "RTL"]
expected: FAIL
[summary.dir: setAttribute() to "auto"]
expected: FAIL
[summary.dir: setAttribute() to "xauto"]
expected: FAIL
@ -14733,9 +14517,6 @@
[summary.dir: setAttribute() to "AUTO"]
expected: FAIL
[summary.dir: IDL set to ""]
expected: FAIL
[summary.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -14778,9 +14559,6 @@
[summary.dir: IDL set to object "test-valueOf"]
expected: FAIL
[summary.dir: IDL set to "ltr"]
expected: FAIL
[summary.dir: IDL set to "xltr"]
expected: FAIL
@ -14793,9 +14571,6 @@
[summary.dir: IDL set to "LTR"]
expected: FAIL
[summary.dir: IDL set to "rtl"]
expected: FAIL
[summary.dir: IDL set to "xrtl"]
expected: FAIL
@ -14808,9 +14583,6 @@
[summary.dir: IDL set to "RTL"]
expected: FAIL
[summary.dir: IDL set to "auto"]
expected: FAIL
[summary.dir: IDL set to "xauto"]
expected: FAIL
@ -14982,9 +14754,6 @@
[summary.tabIndex: IDL set to -2147483648]
expected: FAIL
[menu.dir: setAttribute() to ""]
expected: FAIL
[menu.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -15027,9 +14796,6 @@
[menu.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[menu.dir: setAttribute() to "ltr"]
expected: FAIL
[menu.dir: setAttribute() to "xltr"]
expected: FAIL
@ -15042,9 +14808,6 @@
[menu.dir: setAttribute() to "LTR"]
expected: FAIL
[menu.dir: setAttribute() to "rtl"]
expected: FAIL
[menu.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -15057,9 +14820,6 @@
[menu.dir: setAttribute() to "RTL"]
expected: FAIL
[menu.dir: setAttribute() to "auto"]
expected: FAIL
[menu.dir: setAttribute() to "xauto"]
expected: FAIL
@ -15072,9 +14832,6 @@
[menu.dir: setAttribute() to "AUTO"]
expected: FAIL
[menu.dir: IDL set to ""]
expected: FAIL
[menu.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -15117,9 +14874,6 @@
[menu.dir: IDL set to object "test-valueOf"]
expected: FAIL
[menu.dir: IDL set to "ltr"]
expected: FAIL
[menu.dir: IDL set to "xltr"]
expected: FAIL
@ -15132,9 +14886,6 @@
[menu.dir: IDL set to "LTR"]
expected: FAIL
[menu.dir: IDL set to "rtl"]
expected: FAIL
[menu.dir: IDL set to "xrtl"]
expected: FAIL
@ -15147,9 +14898,6 @@
[menu.dir: IDL set to "RTL"]
expected: FAIL
[menu.dir: IDL set to "auto"]
expected: FAIL
[menu.dir: IDL set to "xauto"]
expected: FAIL
@ -16638,9 +16386,6 @@
[menuitem.default: IDL set to object "test-valueOf"]
expected: FAIL
[dialog.dir: setAttribute() to ""]
expected: FAIL
[dialog.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -16683,9 +16428,6 @@
[dialog.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[dialog.dir: setAttribute() to "ltr"]
expected: FAIL
[dialog.dir: setAttribute() to "xltr"]
expected: FAIL
@ -16698,9 +16440,6 @@
[dialog.dir: setAttribute() to "LTR"]
expected: FAIL
[dialog.dir: setAttribute() to "rtl"]
expected: FAIL
[dialog.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -16713,9 +16452,6 @@
[dialog.dir: setAttribute() to "RTL"]
expected: FAIL
[dialog.dir: setAttribute() to "auto"]
expected: FAIL
[dialog.dir: setAttribute() to "xauto"]
expected: FAIL
@ -16728,9 +16464,6 @@
[dialog.dir: setAttribute() to "AUTO"]
expected: FAIL
[dialog.dir: IDL set to ""]
expected: FAIL
[dialog.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -16773,9 +16506,6 @@
[dialog.dir: IDL set to object "test-valueOf"]
expected: FAIL
[dialog.dir: IDL set to "ltr"]
expected: FAIL
[dialog.dir: IDL set to "xltr"]
expected: FAIL
@ -16788,9 +16518,6 @@
[dialog.dir: IDL set to "LTR"]
expected: FAIL
[dialog.dir: IDL set to "rtl"]
expected: FAIL
[dialog.dir: IDL set to "xrtl"]
expected: FAIL
@ -16803,9 +16530,6 @@
[dialog.dir: IDL set to "RTL"]
expected: FAIL
[dialog.dir: IDL set to "auto"]
expected: FAIL
[dialog.dir: IDL set to "xauto"]
expected: FAIL
@ -16977,9 +16701,6 @@
[dialog.tabIndex: IDL set to -2147483648]
expected: FAIL
[undefinedelement.dir: setAttribute() to ""]
expected: FAIL
[undefinedelement.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -17022,9 +16743,6 @@
[undefinedelement.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[undefinedelement.dir: setAttribute() to "ltr"]
expected: FAIL
[undefinedelement.dir: setAttribute() to "xltr"]
expected: FAIL
@ -17037,9 +16755,6 @@
[undefinedelement.dir: setAttribute() to "LTR"]
expected: FAIL
[undefinedelement.dir: setAttribute() to "rtl"]
expected: FAIL
[undefinedelement.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -17052,9 +16767,6 @@
[undefinedelement.dir: setAttribute() to "RTL"]
expected: FAIL
[undefinedelement.dir: setAttribute() to "auto"]
expected: FAIL
[undefinedelement.dir: setAttribute() to "xauto"]
expected: FAIL
@ -17067,9 +16779,6 @@
[undefinedelement.dir: setAttribute() to "AUTO"]
expected: FAIL
[undefinedelement.dir: IDL set to ""]
expected: FAIL
[undefinedelement.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -17112,9 +16821,6 @@
[undefinedelement.dir: IDL set to object "test-valueOf"]
expected: FAIL
[undefinedelement.dir: IDL set to "ltr"]
expected: FAIL
[undefinedelement.dir: IDL set to "xltr"]
expected: FAIL
@ -17127,9 +16833,6 @@
[undefinedelement.dir: IDL set to "LTR"]
expected: FAIL
[undefinedelement.dir: IDL set to "rtl"]
expected: FAIL
[undefinedelement.dir: IDL set to "xrtl"]
expected: FAIL
@ -17142,9 +16845,6 @@
[undefinedelement.dir: IDL set to "RTL"]
expected: FAIL
[undefinedelement.dir: IDL set to "auto"]
expected: FAIL
[undefinedelement.dir: IDL set to "xauto"]
expected: FAIL
@ -17442,15 +17142,6 @@
[menu.type: IDL set to "CONTEXT"]
expected: FAIL
[template.dir: typeof IDL attribute]
expected: FAIL
[template.dir: IDL get with DOM attribute unset]
expected: FAIL
[template.dir: setAttribute() to ""]
expected: FAIL
[template.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -17493,9 +17184,6 @@
[template.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[template.dir: setAttribute() to "ltr"]
expected: FAIL
[template.dir: setAttribute() to "xltr"]
expected: FAIL
@ -17508,9 +17196,6 @@
[template.dir: setAttribute() to "LTR"]
expected: FAIL
[template.dir: setAttribute() to "rtl"]
expected: FAIL
[template.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -17523,9 +17208,6 @@
[template.dir: setAttribute() to "RTL"]
expected: FAIL
[template.dir: setAttribute() to "auto"]
expected: FAIL
[template.dir: setAttribute() to "xauto"]
expected: FAIL
@ -17538,9 +17220,6 @@
[template.dir: setAttribute() to "AUTO"]
expected: FAIL
[template.dir: IDL set to ""]
expected: FAIL
[template.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -17583,9 +17262,6 @@
[template.dir: IDL set to object "test-valueOf"]
expected: FAIL
[template.dir: IDL set to "ltr"]
expected: FAIL
[template.dir: IDL set to "xltr"]
expected: FAIL
@ -17598,9 +17274,6 @@
[template.dir: IDL set to "LTR"]
expected: FAIL
[template.dir: IDL set to "rtl"]
expected: FAIL
[template.dir: IDL set to "xrtl"]
expected: FAIL
@ -17613,9 +17286,6 @@
[template.dir: IDL set to "RTL"]
expected: FAIL
[template.dir: IDL set to "auto"]
expected: FAIL
[template.dir: IDL set to "xauto"]
expected: FAIL
@ -17796,15 +17466,6 @@
[template.tabIndex: IDL set to -2147483648]
expected: FAIL
[slot.dir: typeof IDL attribute]
expected: FAIL
[slot.dir: IDL get with DOM attribute unset]
expected: FAIL
[slot.dir: setAttribute() to ""]
expected: FAIL
[slot.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -17847,9 +17508,6 @@
[slot.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[slot.dir: setAttribute() to "ltr"]
expected: FAIL
[slot.dir: setAttribute() to "xltr"]
expected: FAIL
@ -17862,9 +17520,6 @@
[slot.dir: setAttribute() to "LTR"]
expected: FAIL
[slot.dir: setAttribute() to "rtl"]
expected: FAIL
[slot.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -17877,9 +17532,6 @@
[slot.dir: setAttribute() to "RTL"]
expected: FAIL
[slot.dir: setAttribute() to "auto"]
expected: FAIL
[slot.dir: setAttribute() to "xauto"]
expected: FAIL
@ -17892,9 +17544,6 @@
[slot.dir: setAttribute() to "AUTO"]
expected: FAIL
[slot.dir: IDL set to ""]
expected: FAIL
[slot.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -17937,9 +17586,6 @@
[slot.dir: IDL set to object "test-valueOf"]
expected: FAIL
[slot.dir: IDL set to "ltr"]
expected: FAIL
[slot.dir: IDL set to "xltr"]
expected: FAIL
@ -17952,9 +17598,6 @@
[slot.dir: IDL set to "LTR"]
expected: FAIL
[slot.dir: IDL set to "rtl"]
expected: FAIL
[slot.dir: IDL set to "xrtl"]
expected: FAIL
@ -17967,9 +17610,6 @@
[slot.dir: IDL set to "RTL"]
expected: FAIL
[slot.dir: IDL set to "auto"]
expected: FAIL
[slot.dir: IDL set to "xauto"]
expected: FAIL

View file

@ -2193,12 +2193,6 @@
[applet.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[marquee.dir: typeof IDL attribute]
expected: FAIL
[marquee.dir: IDL get with DOM attribute unset]
expected: FAIL
[marquee.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -4407,12 +4401,6 @@
[marquee.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[frameset.dir: typeof IDL attribute]
expected: FAIL
[frameset.dir: IDL get with DOM attribute unset]
expected: FAIL
[frameset.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -5394,12 +5382,6 @@
[frameset.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[frame.dir: typeof IDL attribute]
expected: FAIL
[frame.dir: IDL get with DOM attribute unset]
expected: FAIL
[frame.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -7200,12 +7182,6 @@
[frame.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[dir.dir: typeof IDL attribute]
expected: FAIL
[dir.dir: IDL get with DOM attribute unset]
expected: FAIL
[dir.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -8037,12 +8013,6 @@
[dir.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[font.dir: typeof IDL attribute]
expected: FAIL
[font.dir: IDL get with DOM attribute unset]
expected: FAIL
[font.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -12333,9 +12303,6 @@
[applet.width: IDL set to object "test-valueOf"]
expected: FAIL
[marquee.dir: setAttribute() to ""]
expected: FAIL
[marquee.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -12378,9 +12345,6 @@
[marquee.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[marquee.dir: setAttribute() to "ltr"]
expected: FAIL
[marquee.dir: setAttribute() to "xltr"]
expected: FAIL
@ -12393,9 +12357,6 @@
[marquee.dir: setAttribute() to "LTR"]
expected: FAIL
[marquee.dir: setAttribute() to "rtl"]
expected: FAIL
[marquee.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -12408,9 +12369,6 @@
[marquee.dir: setAttribute() to "RTL"]
expected: FAIL
[marquee.dir: setAttribute() to "auto"]
expected: FAIL
[marquee.dir: setAttribute() to "xauto"]
expected: FAIL
@ -12423,9 +12381,6 @@
[marquee.dir: setAttribute() to "AUTO"]
expected: FAIL
[marquee.dir: IDL set to ""]
expected: FAIL
[marquee.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -12468,9 +12423,6 @@
[marquee.dir: IDL set to object "test-valueOf"]
expected: FAIL
[marquee.dir: IDL set to "ltr"]
expected: FAIL
[marquee.dir: IDL set to "xltr"]
expected: FAIL
@ -12483,9 +12435,6 @@
[marquee.dir: IDL set to "LTR"]
expected: FAIL
[marquee.dir: IDL set to "rtl"]
expected: FAIL
[marquee.dir: IDL set to "xrtl"]
expected: FAIL
@ -12498,9 +12447,6 @@
[marquee.dir: IDL set to "RTL"]
expected: FAIL
[marquee.dir: IDL set to "auto"]
expected: FAIL
[marquee.dir: IDL set to "xauto"]
expected: FAIL
@ -13932,9 +13878,6 @@
[marquee.width: IDL set to object "test-valueOf"]
expected: FAIL
[frameset.dir: setAttribute() to ""]
expected: FAIL
[frameset.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -13977,9 +13920,6 @@
[frameset.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[frameset.dir: setAttribute() to "ltr"]
expected: FAIL
[frameset.dir: setAttribute() to "xltr"]
expected: FAIL
@ -13992,9 +13932,6 @@
[frameset.dir: setAttribute() to "LTR"]
expected: FAIL
[frameset.dir: setAttribute() to "rtl"]
expected: FAIL
[frameset.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -14007,9 +13944,6 @@
[frameset.dir: setAttribute() to "RTL"]
expected: FAIL
[frameset.dir: setAttribute() to "auto"]
expected: FAIL
[frameset.dir: setAttribute() to "xauto"]
expected: FAIL
@ -14022,9 +13956,6 @@
[frameset.dir: setAttribute() to "AUTO"]
expected: FAIL
[frameset.dir: IDL set to ""]
expected: FAIL
[frameset.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -14067,9 +13998,6 @@
[frameset.dir: IDL set to object "test-valueOf"]
expected: FAIL
[frameset.dir: IDL set to "ltr"]
expected: FAIL
[frameset.dir: IDL set to "xltr"]
expected: FAIL
@ -14082,9 +14010,6 @@
[frameset.dir: IDL set to "LTR"]
expected: FAIL
[frameset.dir: IDL set to "rtl"]
expected: FAIL
[frameset.dir: IDL set to "xrtl"]
expected: FAIL
@ -14097,9 +14022,6 @@
[frameset.dir: IDL set to "RTL"]
expected: FAIL
[frameset.dir: IDL set to "auto"]
expected: FAIL
[frameset.dir: IDL set to "xauto"]
expected: FAIL
@ -14451,9 +14373,6 @@
[frameset.rows: IDL set to object "test-valueOf"]
expected: FAIL
[frame.dir: setAttribute() to ""]
expected: FAIL
[frame.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -14496,9 +14415,6 @@
[frame.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[frame.dir: setAttribute() to "ltr"]
expected: FAIL
[frame.dir: setAttribute() to "xltr"]
expected: FAIL
@ -14511,9 +14427,6 @@
[frame.dir: setAttribute() to "LTR"]
expected: FAIL
[frame.dir: setAttribute() to "rtl"]
expected: FAIL
[frame.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -14526,9 +14439,6 @@
[frame.dir: setAttribute() to "RTL"]
expected: FAIL
[frame.dir: setAttribute() to "auto"]
expected: FAIL
[frame.dir: setAttribute() to "xauto"]
expected: FAIL
@ -14541,9 +14451,6 @@
[frame.dir: setAttribute() to "AUTO"]
expected: FAIL
[frame.dir: IDL set to ""]
expected: FAIL
[frame.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -14586,9 +14493,6 @@
[frame.dir: IDL set to object "test-valueOf"]
expected: FAIL
[frame.dir: IDL set to "ltr"]
expected: FAIL
[frame.dir: IDL set to "xltr"]
expected: FAIL
@ -14601,9 +14505,6 @@
[frame.dir: IDL set to "LTR"]
expected: FAIL
[frame.dir: IDL set to "rtl"]
expected: FAIL
[frame.dir: IDL set to "xrtl"]
expected: FAIL
@ -14616,9 +14517,6 @@
[frame.dir: IDL set to "RTL"]
expected: FAIL
[frame.dir: IDL set to "auto"]
expected: FAIL
[frame.dir: IDL set to "xauto"]
expected: FAIL
@ -15546,9 +15444,6 @@
[frame.marginWidth: IDL set to object "test-valueOf"]
expected: FAIL
[dir.dir: setAttribute() to ""]
expected: FAIL
[dir.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -15591,9 +15486,6 @@
[dir.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[dir.dir: setAttribute() to "ltr"]
expected: FAIL
[dir.dir: setAttribute() to "xltr"]
expected: FAIL
@ -15606,9 +15498,6 @@
[dir.dir: setAttribute() to "LTR"]
expected: FAIL
[dir.dir: setAttribute() to "rtl"]
expected: FAIL
[dir.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -15621,9 +15510,6 @@
[dir.dir: setAttribute() to "RTL"]
expected: FAIL
[dir.dir: setAttribute() to "auto"]
expected: FAIL
[dir.dir: setAttribute() to "xauto"]
expected: FAIL
@ -15636,9 +15522,6 @@
[dir.dir: setAttribute() to "AUTO"]
expected: FAIL
[dir.dir: IDL set to ""]
expected: FAIL
[dir.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -15681,9 +15564,6 @@
[dir.dir: IDL set to object "test-valueOf"]
expected: FAIL
[dir.dir: IDL set to "ltr"]
expected: FAIL
[dir.dir: IDL set to "xltr"]
expected: FAIL
@ -15696,9 +15576,6 @@
[dir.dir: IDL set to "LTR"]
expected: FAIL
[dir.dir: IDL set to "rtl"]
expected: FAIL
[dir.dir: IDL set to "xrtl"]
expected: FAIL
@ -15711,9 +15588,6 @@
[dir.dir: IDL set to "RTL"]
expected: FAIL
[dir.dir: IDL set to "auto"]
expected: FAIL
[dir.dir: IDL set to "xauto"]
expected: FAIL
@ -15975,9 +15849,6 @@
[dir.compact: IDL set to object "test-valueOf"]
expected: FAIL
[font.dir: setAttribute() to ""]
expected: FAIL
[font.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -16020,9 +15891,6 @@
[font.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[font.dir: setAttribute() to "ltr"]
expected: FAIL
[font.dir: setAttribute() to "xltr"]
expected: FAIL
@ -16035,9 +15903,6 @@
[font.dir: setAttribute() to "LTR"]
expected: FAIL
[font.dir: setAttribute() to "rtl"]
expected: FAIL
[font.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -16050,9 +15915,6 @@
[font.dir: setAttribute() to "RTL"]
expected: FAIL
[font.dir: setAttribute() to "auto"]
expected: FAIL
[font.dir: setAttribute() to "xauto"]
expected: FAIL
@ -16065,9 +15927,6 @@
[font.dir: setAttribute() to "AUTO"]
expected: FAIL
[font.dir: IDL set to ""]
expected: FAIL
[font.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -16110,9 +15969,6 @@
[font.dir: IDL set to object "test-valueOf"]
expected: FAIL
[font.dir: IDL set to "ltr"]
expected: FAIL
[font.dir: IDL set to "xltr"]
expected: FAIL
@ -16125,9 +15981,6 @@
[font.dir: IDL set to "LTR"]
expected: FAIL
[font.dir: IDL set to "rtl"]
expected: FAIL
[font.dir: IDL set to "xrtl"]
expected: FAIL
@ -16140,9 +15993,6 @@
[font.dir: IDL set to "RTL"]
expected: FAIL
[font.dir: IDL set to "auto"]
expected: FAIL
[font.dir: IDL set to "xauto"]
expected: FAIL

File diff suppressed because it is too large Load diff

View file

@ -1,11 +1,5 @@
[reflection-tabular.html]
type: testharness
[table.dir: typeof IDL attribute]
expected: FAIL
[table.dir: IDL get with DOM attribute unset]
expected: FAIL
[table.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -1740,12 +1734,6 @@
[table.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[caption.dir: typeof IDL attribute]
expected: FAIL
[caption.dir: IDL get with DOM attribute unset]
expected: FAIL
[caption.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -2598,12 +2586,6 @@
[caption.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[colgroup.dir: typeof IDL attribute]
expected: FAIL
[colgroup.dir: IDL get with DOM attribute unset]
expected: FAIL
[colgroup.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -4143,12 +4125,6 @@
[colgroup.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[col.dir: typeof IDL attribute]
expected: FAIL
[col.dir: IDL get with DOM attribute unset]
expected: FAIL
[col.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -5688,12 +5664,6 @@
[col.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[tbody.dir: typeof IDL attribute]
expected: FAIL
[tbody.dir: IDL get with DOM attribute unset]
expected: FAIL
[tbody.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -6933,12 +6903,6 @@
[tbody.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[thead.dir: typeof IDL attribute]
expected: FAIL
[thead.dir: IDL get with DOM attribute unset]
expected: FAIL
[thead.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -8178,12 +8142,6 @@
[thead.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[tfoot.dir: typeof IDL attribute]
expected: FAIL
[tfoot.dir: IDL get with DOM attribute unset]
expected: FAIL
[tfoot.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -9423,12 +9381,6 @@
[tfoot.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[tr.dir: typeof IDL attribute]
expected: FAIL
[tr.dir: IDL get with DOM attribute unset]
expected: FAIL
[tr.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -10668,12 +10620,6 @@
[tr.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[td.dir: typeof IDL attribute]
expected: FAIL
[td.dir: IDL get with DOM attribute unset]
expected: FAIL
[td.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -12408,12 +12354,6 @@
[td.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
[th.dir: typeof IDL attribute]
expected: FAIL
[th.dir: IDL get with DOM attribute unset]
expected: FAIL
[th.dir: setAttribute() to "" followed by IDL get]
expected: FAIL
@ -16953,9 +16893,6 @@
[col.span: IDL set to 0 followed by IDL get]
expected: FAIL
[table.dir: setAttribute() to ""]
expected: FAIL
[table.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -16998,9 +16935,6 @@
[table.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[table.dir: setAttribute() to "ltr"]
expected: FAIL
[table.dir: setAttribute() to "xltr"]
expected: FAIL
@ -17013,9 +16947,6 @@
[table.dir: setAttribute() to "LTR"]
expected: FAIL
[table.dir: setAttribute() to "rtl"]
expected: FAIL
[table.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -17028,9 +16959,6 @@
[table.dir: setAttribute() to "RTL"]
expected: FAIL
[table.dir: setAttribute() to "auto"]
expected: FAIL
[table.dir: setAttribute() to "xauto"]
expected: FAIL
@ -17043,9 +16971,6 @@
[table.dir: setAttribute() to "AUTO"]
expected: FAIL
[table.dir: IDL set to ""]
expected: FAIL
[table.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -17088,9 +17013,6 @@
[table.dir: IDL set to object "test-valueOf"]
expected: FAIL
[table.dir: IDL set to "ltr"]
expected: FAIL
[table.dir: IDL set to "xltr"]
expected: FAIL
@ -17103,9 +17025,6 @@
[table.dir: IDL set to "LTR"]
expected: FAIL
[table.dir: IDL set to "rtl"]
expected: FAIL
[table.dir: IDL set to "xrtl"]
expected: FAIL
@ -17118,9 +17037,6 @@
[table.dir: IDL set to "RTL"]
expected: FAIL
[table.dir: IDL set to "auto"]
expected: FAIL
[table.dir: IDL set to "xauto"]
expected: FAIL
@ -17922,9 +17838,6 @@
[table.cellSpacing: IDL set to object "test-valueOf"]
expected: FAIL
[caption.dir: setAttribute() to ""]
expected: FAIL
[caption.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -17967,9 +17880,6 @@
[caption.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[caption.dir: setAttribute() to "ltr"]
expected: FAIL
[caption.dir: setAttribute() to "xltr"]
expected: FAIL
@ -17982,9 +17892,6 @@
[caption.dir: setAttribute() to "LTR"]
expected: FAIL
[caption.dir: setAttribute() to "rtl"]
expected: FAIL
[caption.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -17997,9 +17904,6 @@
[caption.dir: setAttribute() to "RTL"]
expected: FAIL
[caption.dir: setAttribute() to "auto"]
expected: FAIL
[caption.dir: setAttribute() to "xauto"]
expected: FAIL
@ -18012,9 +17916,6 @@
[caption.dir: setAttribute() to "AUTO"]
expected: FAIL
[caption.dir: IDL set to ""]
expected: FAIL
[caption.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -18057,9 +17958,6 @@
[caption.dir: IDL set to object "test-valueOf"]
expected: FAIL
[caption.dir: IDL set to "ltr"]
expected: FAIL
[caption.dir: IDL set to "xltr"]
expected: FAIL
@ -18072,9 +17970,6 @@
[caption.dir: IDL set to "LTR"]
expected: FAIL
[caption.dir: IDL set to "rtl"]
expected: FAIL
[caption.dir: IDL set to "xrtl"]
expected: FAIL
@ -18087,9 +17982,6 @@
[caption.dir: IDL set to "RTL"]
expected: FAIL
[caption.dir: IDL set to "auto"]
expected: FAIL
[caption.dir: IDL set to "xauto"]
expected: FAIL
@ -18351,9 +18243,6 @@
[caption.align: IDL set to object "test-valueOf"]
expected: FAIL
[colgroup.dir: setAttribute() to ""]
expected: FAIL
[colgroup.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -18396,9 +18285,6 @@
[colgroup.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[colgroup.dir: setAttribute() to "ltr"]
expected: FAIL
[colgroup.dir: setAttribute() to "xltr"]
expected: FAIL
@ -18411,9 +18297,6 @@
[colgroup.dir: setAttribute() to "LTR"]
expected: FAIL
[colgroup.dir: setAttribute() to "rtl"]
expected: FAIL
[colgroup.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -18426,9 +18309,6 @@
[colgroup.dir: setAttribute() to "RTL"]
expected: FAIL
[colgroup.dir: setAttribute() to "auto"]
expected: FAIL
[colgroup.dir: setAttribute() to "xauto"]
expected: FAIL
@ -18441,9 +18321,6 @@
[colgroup.dir: setAttribute() to "AUTO"]
expected: FAIL
[colgroup.dir: IDL set to ""]
expected: FAIL
[colgroup.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -18486,9 +18363,6 @@
[colgroup.dir: IDL set to object "test-valueOf"]
expected: FAIL
[colgroup.dir: IDL set to "ltr"]
expected: FAIL
[colgroup.dir: IDL set to "xltr"]
expected: FAIL
@ -18501,9 +18375,6 @@
[colgroup.dir: IDL set to "LTR"]
expected: FAIL
[colgroup.dir: IDL set to "rtl"]
expected: FAIL
[colgroup.dir: IDL set to "xrtl"]
expected: FAIL
@ -18516,9 +18387,6 @@
[colgroup.dir: IDL set to "RTL"]
expected: FAIL
[colgroup.dir: IDL set to "auto"]
expected: FAIL
[colgroup.dir: IDL set to "xauto"]
expected: FAIL
@ -19311,9 +19179,6 @@
[colgroup.width: IDL set to object "test-valueOf"]
expected: FAIL
[col.dir: setAttribute() to ""]
expected: FAIL
[col.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -19356,9 +19221,6 @@
[col.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[col.dir: setAttribute() to "ltr"]
expected: FAIL
[col.dir: setAttribute() to "xltr"]
expected: FAIL
@ -19371,9 +19233,6 @@
[col.dir: setAttribute() to "LTR"]
expected: FAIL
[col.dir: setAttribute() to "rtl"]
expected: FAIL
[col.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -19386,9 +19245,6 @@
[col.dir: setAttribute() to "RTL"]
expected: FAIL
[col.dir: setAttribute() to "auto"]
expected: FAIL
[col.dir: setAttribute() to "xauto"]
expected: FAIL
@ -19401,9 +19257,6 @@
[col.dir: setAttribute() to "AUTO"]
expected: FAIL
[col.dir: IDL set to ""]
expected: FAIL
[col.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -19446,9 +19299,6 @@
[col.dir: IDL set to object "test-valueOf"]
expected: FAIL
[col.dir: IDL set to "ltr"]
expected: FAIL
[col.dir: IDL set to "xltr"]
expected: FAIL
@ -19461,9 +19311,6 @@
[col.dir: IDL set to "LTR"]
expected: FAIL
[col.dir: IDL set to "rtl"]
expected: FAIL
[col.dir: IDL set to "xrtl"]
expected: FAIL
@ -19476,9 +19323,6 @@
[col.dir: IDL set to "RTL"]
expected: FAIL
[col.dir: IDL set to "auto"]
expected: FAIL
[col.dir: IDL set to "xauto"]
expected: FAIL
@ -20271,9 +20115,6 @@
[col.width: IDL set to object "test-valueOf"]
expected: FAIL
[tbody.dir: setAttribute() to ""]
expected: FAIL
[tbody.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -20316,9 +20157,6 @@
[tbody.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[tbody.dir: setAttribute() to "ltr"]
expected: FAIL
[tbody.dir: setAttribute() to "xltr"]
expected: FAIL
@ -20331,9 +20169,6 @@
[tbody.dir: setAttribute() to "LTR"]
expected: FAIL
[tbody.dir: setAttribute() to "rtl"]
expected: FAIL
[tbody.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -20346,9 +20181,6 @@
[tbody.dir: setAttribute() to "RTL"]
expected: FAIL
[tbody.dir: setAttribute() to "auto"]
expected: FAIL
[tbody.dir: setAttribute() to "xauto"]
expected: FAIL
@ -20361,9 +20193,6 @@
[tbody.dir: setAttribute() to "AUTO"]
expected: FAIL
[tbody.dir: IDL set to ""]
expected: FAIL
[tbody.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -20406,9 +20235,6 @@
[tbody.dir: IDL set to object "test-valueOf"]
expected: FAIL
[tbody.dir: IDL set to "ltr"]
expected: FAIL
[tbody.dir: IDL set to "xltr"]
expected: FAIL
@ -20421,9 +20247,6 @@
[tbody.dir: IDL set to "LTR"]
expected: FAIL
[tbody.dir: IDL set to "rtl"]
expected: FAIL
[tbody.dir: IDL set to "xrtl"]
expected: FAIL
@ -20436,9 +20259,6 @@
[tbody.dir: IDL set to "RTL"]
expected: FAIL
[tbody.dir: IDL set to "auto"]
expected: FAIL
[tbody.dir: IDL set to "xauto"]
expected: FAIL
@ -20970,9 +20790,6 @@
[tbody.vAlign: IDL set to object "test-valueOf"]
expected: FAIL
[thead.dir: setAttribute() to ""]
expected: FAIL
[thead.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -21015,9 +20832,6 @@
[thead.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[thead.dir: setAttribute() to "ltr"]
expected: FAIL
[thead.dir: setAttribute() to "xltr"]
expected: FAIL
@ -21030,9 +20844,6 @@
[thead.dir: setAttribute() to "LTR"]
expected: FAIL
[thead.dir: setAttribute() to "rtl"]
expected: FAIL
[thead.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -21045,9 +20856,6 @@
[thead.dir: setAttribute() to "RTL"]
expected: FAIL
[thead.dir: setAttribute() to "auto"]
expected: FAIL
[thead.dir: setAttribute() to "xauto"]
expected: FAIL
@ -21060,9 +20868,6 @@
[thead.dir: setAttribute() to "AUTO"]
expected: FAIL
[thead.dir: IDL set to ""]
expected: FAIL
[thead.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -21105,9 +20910,6 @@
[thead.dir: IDL set to object "test-valueOf"]
expected: FAIL
[thead.dir: IDL set to "ltr"]
expected: FAIL
[thead.dir: IDL set to "xltr"]
expected: FAIL
@ -21120,9 +20922,6 @@
[thead.dir: IDL set to "LTR"]
expected: FAIL
[thead.dir: IDL set to "rtl"]
expected: FAIL
[thead.dir: IDL set to "xrtl"]
expected: FAIL
@ -21135,9 +20934,6 @@
[thead.dir: IDL set to "RTL"]
expected: FAIL
[thead.dir: IDL set to "auto"]
expected: FAIL
[thead.dir: IDL set to "xauto"]
expected: FAIL
@ -21669,9 +21465,6 @@
[thead.vAlign: IDL set to object "test-valueOf"]
expected: FAIL
[tfoot.dir: setAttribute() to ""]
expected: FAIL
[tfoot.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -21714,9 +21507,6 @@
[tfoot.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[tfoot.dir: setAttribute() to "ltr"]
expected: FAIL
[tfoot.dir: setAttribute() to "xltr"]
expected: FAIL
@ -21729,9 +21519,6 @@
[tfoot.dir: setAttribute() to "LTR"]
expected: FAIL
[tfoot.dir: setAttribute() to "rtl"]
expected: FAIL
[tfoot.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -21744,9 +21531,6 @@
[tfoot.dir: setAttribute() to "RTL"]
expected: FAIL
[tfoot.dir: setAttribute() to "auto"]
expected: FAIL
[tfoot.dir: setAttribute() to "xauto"]
expected: FAIL
@ -21759,9 +21543,6 @@
[tfoot.dir: setAttribute() to "AUTO"]
expected: FAIL
[tfoot.dir: IDL set to ""]
expected: FAIL
[tfoot.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -21804,9 +21585,6 @@
[tfoot.dir: IDL set to object "test-valueOf"]
expected: FAIL
[tfoot.dir: IDL set to "ltr"]
expected: FAIL
[tfoot.dir: IDL set to "xltr"]
expected: FAIL
@ -21819,9 +21597,6 @@
[tfoot.dir: IDL set to "LTR"]
expected: FAIL
[tfoot.dir: IDL set to "rtl"]
expected: FAIL
[tfoot.dir: IDL set to "xrtl"]
expected: FAIL
@ -21834,9 +21609,6 @@
[tfoot.dir: IDL set to "RTL"]
expected: FAIL
[tfoot.dir: IDL set to "auto"]
expected: FAIL
[tfoot.dir: IDL set to "xauto"]
expected: FAIL
@ -22368,9 +22140,6 @@
[tfoot.vAlign: IDL set to object "test-valueOf"]
expected: FAIL
[tr.dir: setAttribute() to ""]
expected: FAIL
[tr.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -22413,9 +22182,6 @@
[tr.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[tr.dir: setAttribute() to "ltr"]
expected: FAIL
[tr.dir: setAttribute() to "xltr"]
expected: FAIL
@ -22428,9 +22194,6 @@
[tr.dir: setAttribute() to "LTR"]
expected: FAIL
[tr.dir: setAttribute() to "rtl"]
expected: FAIL
[tr.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -22443,9 +22206,6 @@
[tr.dir: setAttribute() to "RTL"]
expected: FAIL
[tr.dir: setAttribute() to "auto"]
expected: FAIL
[tr.dir: setAttribute() to "xauto"]
expected: FAIL
@ -22458,9 +22218,6 @@
[tr.dir: setAttribute() to "AUTO"]
expected: FAIL
[tr.dir: IDL set to ""]
expected: FAIL
[tr.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -22503,9 +22260,6 @@
[tr.dir: IDL set to object "test-valueOf"]
expected: FAIL
[tr.dir: IDL set to "ltr"]
expected: FAIL
[tr.dir: IDL set to "xltr"]
expected: FAIL
@ -22518,9 +22272,6 @@
[tr.dir: IDL set to "LTR"]
expected: FAIL
[tr.dir: IDL set to "rtl"]
expected: FAIL
[tr.dir: IDL set to "xrtl"]
expected: FAIL
@ -22533,9 +22284,6 @@
[tr.dir: IDL set to "RTL"]
expected: FAIL
[tr.dir: IDL set to "auto"]
expected: FAIL
[tr.dir: IDL set to "xauto"]
expected: FAIL
@ -23067,9 +22815,6 @@
[tr.vAlign: IDL set to object "test-valueOf"]
expected: FAIL
[td.dir: setAttribute() to ""]
expected: FAIL
[td.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -23112,9 +22857,6 @@
[td.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[td.dir: setAttribute() to "ltr"]
expected: FAIL
[td.dir: setAttribute() to "xltr"]
expected: FAIL
@ -23127,9 +22869,6 @@
[td.dir: setAttribute() to "LTR"]
expected: FAIL
[td.dir: setAttribute() to "rtl"]
expected: FAIL
[td.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -23142,9 +22881,6 @@
[td.dir: setAttribute() to "RTL"]
expected: FAIL
[td.dir: setAttribute() to "auto"]
expected: FAIL
[td.dir: setAttribute() to "xauto"]
expected: FAIL
@ -23157,9 +22893,6 @@
[td.dir: setAttribute() to "AUTO"]
expected: FAIL
[td.dir: IDL set to ""]
expected: FAIL
[td.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -23202,9 +22935,6 @@
[td.dir: IDL set to object "test-valueOf"]
expected: FAIL
[td.dir: IDL set to "ltr"]
expected: FAIL
[td.dir: IDL set to "xltr"]
expected: FAIL
@ -23217,9 +22947,6 @@
[td.dir: IDL set to "LTR"]
expected: FAIL
[td.dir: IDL set to "rtl"]
expected: FAIL
[td.dir: IDL set to "xrtl"]
expected: FAIL
@ -23232,9 +22959,6 @@
[td.dir: IDL set to "RTL"]
expected: FAIL
[td.dir: IDL set to "auto"]
expected: FAIL
[td.dir: IDL set to "xauto"]
expected: FAIL
@ -24336,9 +24060,6 @@
[td.vAlign: IDL set to object "test-valueOf"]
expected: FAIL
[th.dir: setAttribute() to ""]
expected: FAIL
[th.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -24381,9 +24102,6 @@
[th.dir: setAttribute() to object "test-valueOf"]
expected: FAIL
[th.dir: setAttribute() to "ltr"]
expected: FAIL
[th.dir: setAttribute() to "xltr"]
expected: FAIL
@ -24396,9 +24114,6 @@
[th.dir: setAttribute() to "LTR"]
expected: FAIL
[th.dir: setAttribute() to "rtl"]
expected: FAIL
[th.dir: setAttribute() to "xrtl"]
expected: FAIL
@ -24411,9 +24126,6 @@
[th.dir: setAttribute() to "RTL"]
expected: FAIL
[th.dir: setAttribute() to "auto"]
expected: FAIL
[th.dir: setAttribute() to "xauto"]
expected: FAIL
@ -24426,9 +24138,6 @@
[th.dir: setAttribute() to "AUTO"]
expected: FAIL
[th.dir: IDL set to ""]
expected: FAIL
[th.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "]
expected: FAIL
@ -24471,9 +24180,6 @@
[th.dir: IDL set to object "test-valueOf"]
expected: FAIL
[th.dir: IDL set to "ltr"]
expected: FAIL
[th.dir: IDL set to "xltr"]
expected: FAIL
@ -24486,9 +24192,6 @@
[th.dir: IDL set to "LTR"]
expected: FAIL
[th.dir: IDL set to "rtl"]
expected: FAIL
[th.dir: IDL set to "xrtl"]
expected: FAIL
@ -24501,9 +24204,6 @@
[th.dir: IDL set to "RTL"]
expected: FAIL
[th.dir: IDL set to "auto"]
expected: FAIL
[th.dir: IDL set to "xauto"]
expected: FAIL

File diff suppressed because it is too large Load diff

View file

@ -1,5 +0,0 @@
[dirname-ltr.html]
type: testharness
[submit element directionality]
expected: FAIL

View file

@ -20,10 +20,17 @@
}
var t = async_test("submit element directionality");
document.querySelector("input").value="foobar";
document.querySelector("input").value = "foobar";
document.querySelector("button").click();
document.querySelector("iframe").onload = t.step_func_done(function() {
var iframe = document.querySelector("iframe");
iframe.onload = t.step_func(function() {
// The initial about:blank load event can be fired before the form navigation occurs.
// See https://github.com/whatwg/html/issues/490 for more information.
if(iframe.contentWindow.location.href == "about:blank") { return; }
assert_equals(getParameterByName("comment.dir"), "ltr");
t.done();
});
</script>

View file

@ -0,0 +1,37 @@
<!DOCTYPE html>
<meta charset=utf-8>
<title>Submitting element directionality: the dirname attribute</title>
<link rel="author" title="Denis Ah-Kang" href="mailto:denis@w3.org">
<link rel=help href="https://html.spec.whatwg.org/multipage/#submitting-element-directionality:-the-dirname-attribute">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<form action="dirname-ltr-iframe.html" method=get target="iframe">
<p><label>Comment: <input type=text name="comment" dir="auto" dirname="comment.dir" required/></label></p>
<p><button type=submit>Post Comment</button></p>
</form>
<iframe name="iframe"></iframe>
<script>
function getParameterByName(name) {
name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]");
var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
results = regex.exec(document.querySelector("iframe").contentWindow.location.search);
return results == null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
}
var t = async_test("submit element directionality");
var rtlValue = "مرحبا";
document.querySelector("input").value = rtlValue;
document.querySelector("button").click();
var iframe = document.querySelector("iframe");
iframe.onload = t.step_func(function() {
// The initial about:blank load event can be fired before the form navigation occurs.
// See https://github.com/whatwg/html/issues/490 for more information.
if(iframe.contentWindow.location.href == "about:blank") { return; }
assert_equals(getParameterByName("comment.dir"), "rtl");
t.done();
});
</script>

View file

@ -0,0 +1,38 @@
<!DOCTYPE html>
<meta charset=utf-8>
<title>Submitting element directionality: the dirname attribute</title>
<link rel="author" title="Kolupaev Dmitry" href="mailto:dmitry.klpv@gmail.com">
<link rel=help href="https://html.spec.whatwg.org/multipage/#submitting-element-directionality:-the-dirname-attribute">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<div dir="rtl">
<form action="dirname-ltr-iframe.html" method=get target="iframe">
<p><label>Comment: <input type=text name="comment" dirname="comment.dir" required/></label></p>
<p><button type=submit>Post Comment</button></p>
</form>
</div>
<iframe name="iframe"></iframe>
<script>
function getParameterByName(name) {
name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]");
var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
results = regex.exec(document.querySelector("iframe").contentWindow.location.search);
return results == null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
}
var t = async_test("submit element directionality");
document.querySelector("input").value = "foobar";
document.querySelector("button").click();
var iframe = document.querySelector("iframe");
iframe.onload = t.step_func(function() {
// The initial about:blank load event can be fired before the form navigation occurs.
// See https://github.com/whatwg/html/issues/490 for more information.
if(iframe.contentWindow.location.href == "about:blank") { return; }
assert_equals(getParameterByName("comment.dir"), "rtl");
t.done();
});
</script>