OLD | NEW |
---|---|
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/bind.h" | 5 #include "base/bind.h" |
6 #include "base/command_line.h" | 6 #include "base/command_line.h" |
7 #include "base/compiler_specific.h" | 7 #include "base/compiler_specific.h" |
8 #include "base/containers/hash_tables.h" | 8 #include "base/containers/hash_tables.h" |
9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
(...skipping 889 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
900 | 900 |
901 PostTaskToInProcessRendererAndWait( | 901 PostTaskToInProcessRendererAndWait( |
902 base::Bind( | 902 base::Bind( |
903 &DomSerializerTests::SerializeHTMLDOMWithEntitiesInTextOnRenderer, | 903 &DomSerializerTests::SerializeHTMLDOMWithEntitiesInTextOnRenderer, |
904 base::Unretained(this))); | 904 base::Unretained(this))); |
905 } | 905 } |
906 | 906 |
907 // Test situation of html entities in attribute value when serializing | 907 // Test situation of html entities in attribute value when serializing |
908 // HTML DOM. | 908 // HTML DOM. |
909 // This test started to fail at WebKit r65388. See http://crbug.com/52279. | 909 // This test started to fail at WebKit r65388. See http://crbug.com/52279. |
910 // | |
911 // TODO(tiger@opera.com): Disabled in preparation of page serializer merge -- | |
912 // Some attributes are handled differently in the merged serializer. | |
913 // Bug: http://crbug.com/328354 | |
914 IN_PROC_BROWSER_TEST_F(DomSerializerTests, | 910 IN_PROC_BROWSER_TEST_F(DomSerializerTests, |
915 DISABLE_SerializeHTMLDOMWithEntitiesInAttributeValue) { | 911 SerializeHTMLDOMWithEntitiesInAttributeValue) { |
jochen (gone - plz use gerrit)
2013/12/17 19:07:13
ah, right. It should be DISABLED_ (with a D)
can
| |
916 // Need to spin up the renderer and also navigate to a file url so that the | 912 // Need to spin up the renderer and also navigate to a file url so that the |
917 // renderer code doesn't attempt a fork when it sees a load to file scheme | 913 // renderer code doesn't attempt a fork when it sees a load to file scheme |
918 // from non-file scheme. | 914 // from non-file scheme. |
919 NavigateToURL(shell(), GetTestUrl(".", "simple_page.html")); | 915 NavigateToURL(shell(), GetTestUrl(".", "simple_page.html")); |
920 | 916 |
921 PostTaskToInProcessRendererAndWait( | 917 PostTaskToInProcessRendererAndWait( |
922 base::Bind( | 918 base::Bind( |
923 &DomSerializerTests:: | 919 &DomSerializerTests:: |
924 SerializeHTMLDOMWithEntitiesInAttributeValueOnRenderer, | 920 SerializeHTMLDOMWithEntitiesInAttributeValueOnRenderer, |
925 base::Unretained(this))); | 921 base::Unretained(this))); |
(...skipping 13 matching lines...) Expand all Loading... | |
939 base::Bind( | 935 base::Bind( |
940 &DomSerializerTests:: | 936 &DomSerializerTests:: |
941 SerializeHTMLDOMWithNonStandardEntitiesOnRenderer, | 937 SerializeHTMLDOMWithNonStandardEntitiesOnRenderer, |
942 base::Unretained(this), file_url)); | 938 base::Unretained(this), file_url)); |
943 } | 939 } |
944 | 940 |
945 // Test situation of BASE tag in original document when serializing HTML DOM. | 941 // Test situation of BASE tag in original document when serializing HTML DOM. |
946 // When serializing, we should comment the BASE tag, append a new BASE tag. | 942 // When serializing, we should comment the BASE tag, append a new BASE tag. |
947 // rewrite all the savable URLs to relative local path, and change other URLs | 943 // rewrite all the savable URLs to relative local path, and change other URLs |
948 // to absolute URLs. | 944 // to absolute URLs. |
949 // | 945 IN_PROC_BROWSER_TEST_F(DomSerializerTests, SerializeHTMLDOMWithBaseTag) { |
950 // TODO(tiger@opera.com): Disabled in preparation of page serializer merge -- | |
951 // Base tags are handled a bit different in merged version. | |
952 // Bug: http://crbug.com/328354 | |
953 IN_PROC_BROWSER_TEST_F(DomSerializerTests, | |
954 DISABLE_SerializeHTMLDOMWithBaseTag) { | |
955 base::FilePath page_file_path = GetTestFilePath( | 946 base::FilePath page_file_path = GetTestFilePath( |
956 "dom_serializer", "html_doc_has_base_tag.htm"); | 947 "dom_serializer", "html_doc_has_base_tag.htm"); |
957 | 948 |
958 // Get page dir URL which is base URL of this file. | 949 // Get page dir URL which is base URL of this file. |
959 base::FilePath dir_name = page_file_path.DirName(); | 950 base::FilePath dir_name = page_file_path.DirName(); |
960 dir_name = dir_name.Append( | 951 dir_name = dir_name.Append( |
961 base::FilePath::StringType(base::FilePath::kSeparators[0], 1)); | 952 base::FilePath::StringType(base::FilePath::kSeparators[0], 1)); |
962 GURL path_dir_url = net::FilePathToFileURL(dir_name); | 953 GURL path_dir_url = net::FilePathToFileURL(dir_name); |
963 | 954 |
964 // Get file URL. | 955 // Get file URL. |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1011 NavigateToURL(shell(), file_url); | 1002 NavigateToURL(shell(), file_url); |
1012 | 1003 |
1013 PostTaskToInProcessRendererAndWait( | 1004 PostTaskToInProcessRendererAndWait( |
1014 base::Bind( | 1005 base::Bind( |
1015 &DomSerializerTests:: | 1006 &DomSerializerTests:: |
1016 SubResourceForElementsInNonHTMLNamespaceOnRenderer, | 1007 SubResourceForElementsInNonHTMLNamespaceOnRenderer, |
1017 base::Unretained(this), file_url)); | 1008 base::Unretained(this), file_url)); |
1018 } | 1009 } |
1019 | 1010 |
1020 } // namespace content | 1011 } // namespace content |
OLD | NEW |